From 9681a833db69e38a67a443c6f4b244175f4f4314 Mon Sep 17 00:00:00 2001 From: Janie Richling Date: Fri, 10 Feb 2017 01:10:15 -0600 Subject: Fix test_delete_propagate probe test Fixes the failure in TestReconstructorRevert.test_delete_propagate introduced by Related-Change. Related-Change-Id: Ie351d8342fc8e589b143f981e95ce74e70e52784 Change-Id: I1657c1eecc9b62320e2cf184050e0db122821139 --- test/probe/test_reconstructor_revert.py | 48 +++++++++++++++++++++++++-------- 1 file changed, 37 insertions(+), 11 deletions(-) diff --git a/test/probe/test_reconstructor_revert.py b/test/probe/test_reconstructor_revert.py index 8bda3c21b..32524325b 100644 --- a/test/probe/test_reconstructor_revert.py +++ b/test/probe/test_reconstructor_revert.py @@ -200,19 +200,23 @@ class TestReconstructorRevert(ECProbeTest): # repair the first primary self.revive_drive(self.device_dir('object', failed_nodes[0])) - # run the reconstructor on the *second* handoff node - self.reconstructor.once(number=self.config_number(hnodes[1])) + # run the reconstructor on the handoffs nodes, if there are no data + # frags to hint at the node index - each hnode syncs to all primaries + for hnode in hnodes: + self.reconstructor.once(number=self.config_number(hnode)) - # make sure it's tombstone was pushed out - try: - self.direct_get(hnodes[1], opart) - except direct_client.DirectClientException as err: - self.assertEqual(err.http_status, 404) - self.assertNotIn('X-Backend-Timestamp', err.http_headers) - else: - self.fail('Found obj data on %r' % hnodes[1]) + # because not all primaries are online, the tombstones remain + for hnode in hnodes: + try: + self.direct_get(hnode, opart) + except direct_client.DirectClientException as err: + self.assertEqual(err.http_status, 404) + self.assertEqual(err.http_headers['X-Backend-Timestamp'], + delete_timestamp) + else: + self.fail('Found obj data on %r' % hnode) - # ... and it's on the first failed (now repaired) primary + # ... but it's on the first failed (now repaired) primary try: self.direct_get(failed_nodes[0], opart) except direct_client.DirectClientException as err: @@ -247,6 +251,28 @@ class TestReconstructorRevert(ECProbeTest): else: self.fail('Found obj data on %r' % failed_nodes[1]) + # ... but still on the second handoff node + try: + self.direct_get(hnodes[1], opart) + except direct_client.DirectClientException as err: + self.assertEqual(err.http_status, 404) + self.assertEqual(err.http_headers['X-Backend-Timestamp'], + delete_timestamp) + else: + self.fail('Found obj data on %r' % hnodes[1]) + + # ... until it's next sync + self.reconstructor.once(number=self.config_number(hnodes[1])) + + # ... then it's tombstone is pushed off too! + try: + self.direct_get(hnodes[1], opart) + except direct_client.DirectClientException as err: + self.assertEqual(err.http_status, 404) + self.assertNotIn('X-Backend-Timestamp', err.http_headers) + else: + self.fail('Found obj data on %r' % hnodes[1]) + # sanity make sure proxy get can't find it try: self.proxy_get() -- cgit v1.2.1