OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright 2015 The LUCI Authors. All rights reserved. | 2 # Copyright 2015 The LUCI Authors. All rights reserved. |
3 # Use of this source code is governed under the Apache License, Version 2.0 | 3 # Use of this source code is governed under the Apache License, Version 2.0 |
4 # that can be found in the LICENSE file. | 4 # that can be found in the LICENSE file. |
5 | 5 |
6 import cStringIO | 6 import cStringIO |
7 import unittest | 7 import unittest |
8 | 8 |
9 import test_env | 9 import test_env |
10 | 10 |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 with self.assertRaises(AssertionError): | 154 with self.assertRaises(AssertionError): |
155 foo.set_step_status('SINGLE') | 155 foo.set_step_status('SINGLE') |
156 | 156 |
157 def test_buildbot_status_constraint(self): | 157 def test_buildbot_status_constraint(self): |
158 with stream.StreamEngineInvariants() as engine: | 158 with stream.StreamEngineInvariants() as engine: |
159 foo = engine.make_step_stream('foo') | 159 foo = engine.make_step_stream('foo') |
160 foo.set_step_status('FAILURE') | 160 foo.set_step_status('FAILURE') |
161 with self.assertRaises(AssertionError): | 161 with self.assertRaises(AssertionError): |
162 foo.set_step_status('SUCCESS') | 162 foo.set_step_status('SUCCESS') |
163 | 163 |
| 164 def test_content_assertions(self): |
| 165 with stream.StreamEngineInvariants() as engine: |
| 166 with self.assertRaises(AssertionError): |
| 167 engine.make_step_stream('foo\nbar') |
| 168 |
| 169 # Test StepStream. |
| 170 s = engine.make_step_stream('foo') |
| 171 with self.assertRaises(AssertionError): |
| 172 s.new_log_stream('foo\nbar') |
| 173 ls = s.new_log_stream('foo') |
| 174 |
| 175 with self.assertRaises(AssertionError): |
| 176 s.write_line('foo\nbar') |
| 177 s.write_line('foo') |
| 178 |
| 179 with self.assertRaises(AssertionError): |
| 180 s.add_step_text('foo\nbar') |
| 181 s.add_step_text('foo') |
| 182 |
| 183 with self.assertRaises(AssertionError): |
| 184 s.add_step_summary_text('foo\nbar') |
| 185 s.add_step_summary_text('foo') |
| 186 |
| 187 with self.assertRaises(AssertionError): |
| 188 s.add_step_link('foo\nbar', 'baz') |
| 189 with self.assertRaises(AssertionError): |
| 190 s.add_step_link('foo', 'bar\nbaz') |
| 191 s.add_step_link('foo', 'bar') |
| 192 |
| 193 with self.assertRaises(AssertionError): |
| 194 s.set_build_property('foo\nbar', 'true') |
| 195 with self.assertRaises(AssertionError): |
| 196 s.set_build_property('foo', 'true\n') |
| 197 with self.assertRaises(ValueError): |
| 198 s.set_build_property('foo', 'NOT JSON') |
| 199 s.set_build_property('foo', '"Is JSON"') |
| 200 |
| 201 with self.assertRaises(AssertionError): |
| 202 s.trigger('true\n') |
| 203 with self.assertRaises(ValueError): |
| 204 s.trigger('NOT JSON') |
| 205 s.trigger('"Is JSON"') |
| 206 |
| 207 # Test LogStream. |
| 208 with self.assertRaises(AssertionError): |
| 209 ls.write_line('foo\nbar') |
| 210 ls.write_line('foo') |
| 211 |
| 212 ls.close() |
| 213 s.close() |
| 214 |
| 215 |
164 if __name__ == '__main__': | 216 if __name__ == '__main__': |
165 unittest.main() | 217 unittest.main() |
OLD | NEW |