Skip to content
Snippets Groups Projects
Commit 08756cdf authored by inso's avatar inso
Browse files

Fix order of patch decorators

parent 5e94e300
No related branches found
No related tags found
No related merge requests found
...@@ -94,9 +94,9 @@ class TestBaseGraph(unittest.TestCase, QuamashTest): ...@@ -94,9 +94,9 @@ class TestBaseGraph(unittest.TestCase, QuamashTest):
self.lp.run_until_complete(exec_test()) self.lp.run_until_complete(exec_test())
@patch('sakia.core.Application')
@patch('sakia.core.Community') @patch('sakia.core.Community')
@patch('time.time', Mock(return_value=950000)) @patch('sakia.core.Application')
@patch('time.time', Mock(return_value=50000))
def test_add_identitiers(self, app, community): def test_add_identitiers(self, app, community):
community.parameters = CoroutineMock(return_value = {'sigValidity': 1000}) community.parameters = CoroutineMock(return_value = {'sigValidity': 1000})
community.network.confirmations = Mock(side_effect=lambda n: 4 if 996 else None) community.network.confirmations = Mock(side_effect=lambda n: 4 if 996 else None)
...@@ -107,12 +107,12 @@ class TestBaseGraph(unittest.TestCase, QuamashTest): ...@@ -107,12 +107,12 @@ class TestBaseGraph(unittest.TestCase, QuamashTest):
certifications = [ certifications = [
{ {
'identity': self.first_identity, 'identity': self.first_identity,
'cert_time': 949100, 'cert_time': 49100,
'block_number': 900 'block_number': 900
}, },
{ {
'identity': self.second_identity, 'identity': self.second_identity,
'cert_time': 949800, 'cert_time': 49800,
'block_number': 996 'block_number': 996
} }
] ]
...@@ -145,8 +145,8 @@ class TestBaseGraph(unittest.TestCase, QuamashTest): ...@@ -145,8 +145,8 @@ class TestBaseGraph(unittest.TestCase, QuamashTest):
self.lp.run_until_complete(exec_test()) self.lp.run_until_complete(exec_test())
@patch('sakia.core.Application')
@patch('sakia.core.Community') @patch('sakia.core.Community')
@patch('sakia.core.Application')
@patch('time.time', Mock(return_value=50000)) @patch('time.time', Mock(return_value=50000))
def test_add_certified(self, app, community): def test_add_certified(self, app, community):
community.parameters = CoroutineMock(return_value = {'sigValidity': 1000}) community.parameters = CoroutineMock(return_value = {'sigValidity': 1000})
...@@ -184,8 +184,8 @@ class TestBaseGraph(unittest.TestCase, QuamashTest): ...@@ -184,8 +184,8 @@ class TestBaseGraph(unittest.TestCase, QuamashTest):
self.lp.run_until_complete(exec_test()) self.lp.run_until_complete(exec_test())
@patch('sakia.core.Application')
@patch('sakia.core.Community') @patch('sakia.core.Community')
@patch('sakia.core.Application')
@patch('time.time', Mock(return_value=50000)) @patch('time.time', Mock(return_value=50000))
def test_add_identity(self, app, community): def test_add_identity(self, app, community):
app.preferences = {'expert_mode': True} app.preferences = {'expert_mode': True}
......
...@@ -120,8 +120,8 @@ class TestExplorerGraph(unittest.TestCase, QuamashTest): ...@@ -120,8 +120,8 @@ class TestExplorerGraph(unittest.TestCase, QuamashTest):
def tearDown(self): def tearDown(self):
self.tearDownQuamash() self.tearDownQuamash()
@patch('sakia.core.Application')
@patch('sakia.core.Community') @patch('sakia.core.Community')
@patch('sakia.core.Application')
@patch('time.time', Mock(return_value=50000)) @patch('time.time', Mock(return_value=50000))
def test_explore_full_from_center(self, app, community): def test_explore_full_from_center(self, app, community):
community.parameters = CoroutineMock(return_value = {'sigValidity': 1000}) community.parameters = CoroutineMock(return_value = {'sigValidity': 1000})
...@@ -137,8 +137,8 @@ class TestExplorerGraph(unittest.TestCase, QuamashTest): ...@@ -137,8 +137,8 @@ class TestExplorerGraph(unittest.TestCase, QuamashTest):
self.lp.run_until_complete(exec_test()) self.lp.run_until_complete(exec_test())
@patch('sakia.core.Application')
@patch('sakia.core.Community') @patch('sakia.core.Community')
@patch('sakia.core.Application')
@patch('time.time', Mock(return_value=50000)) @patch('time.time', Mock(return_value=50000))
def test_explore_full_from_extremity(self, app, community): def test_explore_full_from_extremity(self, app, community):
community.parameters = CoroutineMock(return_value = {'sigValidity': 1000}) community.parameters = CoroutineMock(return_value = {'sigValidity': 1000})
...@@ -154,8 +154,8 @@ class TestExplorerGraph(unittest.TestCase, QuamashTest): ...@@ -154,8 +154,8 @@ class TestExplorerGraph(unittest.TestCase, QuamashTest):
self.lp.run_until_complete(exec_test()) self.lp.run_until_complete(exec_test())
@patch('sakia.core.Application')
@patch('sakia.core.Community') @patch('sakia.core.Community')
@patch('sakia.core.Application')
@patch('time.time', Mock(return_value=50000)) @patch('time.time', Mock(return_value=50000))
def test_explore_partial(self, app, community): def test_explore_partial(self, app, community):
community.parameters = CoroutineMock(return_value = {'sigValidity': 1000}) community.parameters = CoroutineMock(return_value = {'sigValidity': 1000})
...@@ -171,8 +171,8 @@ class TestExplorerGraph(unittest.TestCase, QuamashTest): ...@@ -171,8 +171,8 @@ class TestExplorerGraph(unittest.TestCase, QuamashTest):
self.lp.run_until_complete(exec_test()) self.lp.run_until_complete(exec_test())
@patch('sakia.core.Application')
@patch('sakia.core.Community') @patch('sakia.core.Community')
@patch('sakia.core.Application')
@patch('time.time', Mock(return_value=50000)) @patch('time.time', Mock(return_value=50000))
def test_start_stop_exploration(self, app, community): def test_start_stop_exploration(self, app, community):
async def explore_mock(id, steps): async def explore_mock(id, steps):
......
...@@ -78,8 +78,8 @@ class TestWotGraph(unittest.TestCase, QuamashTest): ...@@ -78,8 +78,8 @@ class TestWotGraph(unittest.TestCase, QuamashTest):
def tearDown(self): def tearDown(self):
self.tearDownQuamash() self.tearDownQuamash()
@patch('sakia.core.Application')
@patch('sakia.core.Community') @patch('sakia.core.Community')
@patch('sakia.core.Application')
@patch('time.time', Mock(return_value=50000)) @patch('time.time', Mock(return_value=50000))
def test_explore_to_find_member(self, app, community): def test_explore_to_find_member(self, app, community):
community.parameters = CoroutineMock(return_value = {'sigValidity': 1000}) community.parameters = CoroutineMock(return_value = {'sigValidity': 1000})
...@@ -118,8 +118,8 @@ class TestWotGraph(unittest.TestCase, QuamashTest): ...@@ -118,8 +118,8 @@ class TestWotGraph(unittest.TestCase, QuamashTest):
self.lp.run_until_complete(exec_test()) self.lp.run_until_complete(exec_test())
@patch('sakia.core.Application')
@patch('sakia.core.Community') @patch('sakia.core.Community')
@patch('sakia.core.Application')
@patch('time.time', Mock(return_value=50000)) @patch('time.time', Mock(return_value=50000))
def test_shortest_path(self, app, community): def test_shortest_path(self, app, community):
community.parameters = CoroutineMock(return_value = {'sigValidity': 1000}) community.parameters = CoroutineMock(return_value = {'sigValidity': 1000})
...@@ -140,8 +140,8 @@ class TestWotGraph(unittest.TestCase, QuamashTest): ...@@ -140,8 +140,8 @@ class TestWotGraph(unittest.TestCase, QuamashTest):
self.lp.run_until_complete(exec_test()) self.lp.run_until_complete(exec_test())
@patch('sakia.core.Application')
@patch('sakia.core.Community') @patch('sakia.core.Community')
@patch('sakia.core.Application')
@patch('time.time', Mock(return_value=50000)) @patch('time.time', Mock(return_value=50000))
def test_initialize(self, app, community): def test_initialize(self, app, community):
community.parameters = CoroutineMock(return_value = {'sigValidity': 1000}) community.parameters = CoroutineMock(return_value = {'sigValidity': 1000})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment