diff options
| author | Robert Collins <robertc@robertcollins.net> | 2008-12-13 15:36:46 +1100 |
|---|---|---|
| committer | Robert Collins <robertc@robertcollins.net> | 2008-12-13 15:36:46 +1100 |
| commit | 6bd993aaf9d5e9bea1295125f2a503731df5e1c3 (patch) | |
| tree | 3966e2222d3f300be4eb411c1823d6b02abc0fc5 /python/subunit/tests/test_test_protocol.py | |
| parent | 37e5905d6caf96f70e9e3af5aa476aa754ccd3f0 (diff) | |
| parent | 0c09f4a34ac3d4f75292306839709bc18762f8ac (diff) | |
| download | subunit-git-6bd993aaf9d5e9bea1295125f2a503731df5e1c3.tar.gz | |
Merge tags support.
Diffstat (limited to 'python/subunit/tests/test_test_protocol.py')
| -rw-r--r-- | python/subunit/tests/test_test_protocol.py | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/python/subunit/tests/test_test_protocol.py b/python/subunit/tests/test_test_protocol.py index 0b9fc77..52b33c8 100644 --- a/python/subunit/tests/test_test_protocol.py +++ b/python/subunit/tests/test_test_protocol.py @@ -521,6 +521,59 @@ class TestTestProtocolServerAddSuccess(unittest.TestCase): self.simple_success_keyword("successful:") +class TestTestProtocolServerStreamTags(unittest.TestCase): + """Test managing tags on the protocol level.""" + + def setUp(self): + self.client = MockTestProtocolServerClient() + self.protocol = subunit.TestProtocolServer(self.client) + + def test_initial_tags(self): + self.protocol.lineReceived("tags: foo bar:baz quux\n") + self.assertEqual(set(["foo", "bar:baz", "quux"]), + self.protocol.tags) + + def test_minus_removes_tags(self): + self.protocol.lineReceived("tags: foo bar\n") + self.protocol.lineReceived("tags: -bar quux\n") + self.assertEqual(set(["foo", "quux"]), + self.protocol.tags) + + def test_tags_get_set_on_test_no_tags(self): + self.protocol.lineReceived("test mcdonalds farm\n") + test = self.client.start_calls[-1] + self.assertEqual(set(), test.tags) + + def test_tags_get_set_on_test_protocol_tags_only(self): + self.protocol.lineReceived("tags: foo bar\n") + self.protocol.lineReceived("test mcdonalds farm\n") + test = self.client.start_calls[-1] + self.assertEqual(set(["foo", "bar"]), test.tags) + + def test_tags_get_set_on_test_simple(self): + self.protocol.lineReceived("test mcdonalds farm\n") + test = self.client.start_calls[-1] + self.protocol.lineReceived("tags: foo bar\n") + self.assertEqual(set(["foo", "bar"]), test.tags) + self.assertEqual(set(), self.protocol.tags) + + def test_tags_get_set_on_test_minus_removes(self): + self.protocol.lineReceived("test mcdonalds farm\n") + test = self.client.start_calls[-1] + self.protocol.lineReceived("tags: foo bar\n") + self.protocol.lineReceived("tags: -bar quux\n") + self.assertEqual(set(["foo", "quux"]), test.tags) + self.assertEqual(set(), self.protocol.tags) + + def test_test_tags_inherit_protocol_tags(self): + self.protocol.lineReceived("tags: foo bar\n") + self.protocol.lineReceived("test mcdonalds farm\n") + test = self.client.start_calls[-1] + self.protocol.lineReceived("tags: -bar quux\n") + self.assertEqual(set(["foo", "quux"]), test.tags) + self.assertEqual(set(["foo", "bar"]), self.protocol.tags) + + class TestRemotedTestCase(unittest.TestCase): def test_simple(self): |
