-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstorage_with_catalysis.py
69 lines (51 loc) · 2.28 KB
/
storage_with_catalysis.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/usr/bin/env python3
##
## Authors: Adriano Marques
## Nathan Martins
## Thales Ribeiro
##
## Copyright (C) 2019 Exponential Ventures LLC
##
## This library is free software; you can redistribute it and/or
## modify it under the terms of the GNU Library General Public
## License as published by the Free Software Foundation; either
## version 2 of the License, or (at your option) any later version.
##
## This library is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
## Library General Public License for more details.
##
## You should have received a copy of the GNU Library General Public
## License along with this library; if not, write to the Free Software
## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
##
import os
import uuid
import asynctest
from stripping import setup_stripping_with_catalysis
class TestStorageWithCatalysis(asynctest.TestCase):
def test_has_catalysis_client(self):
st, _ = setup_stripping_with_catalysis("/tmp/", "local")
self.assertIsNotNone(st.cache.storage.catalysis_client)
def test_no_cache_dir_creation(self):
random = str(uuid.uuid4())
cache_dir = f"/tmp/{random}/cache/"
st, _ = setup_stripping_with_catalysis(cache_dir, "local")
self.assertFalse(os.path.isdir(cache_dir))
async def test_save_step_remotely(self):
random = str(uuid.uuid4())
cache_dir = f"/tmp/{random}/cache/"
stripping, context = setup_stripping_with_catalysis(cache_dir, "local")
storage = stripping.cache.storage
storage.save_step('Pass', 'step_name', 'RETURN_HERE', context)
async def test_get_step_remotely(self):
random = str(uuid.uuid4())
cache_dir = f"/tmp/{random}/cache/"
stripping, context = setup_stripping_with_catalysis(cache_dir, "local")
storage = stripping.cache.storage
storage.save_step('Pass', 'step_name', 'RETURN_HERE', context)
aux = storage.step_location('Pass')
# The len(aux) should be 3 because it means
# location, return location and context location path
self.assertEqual(3, len(aux))