tests update + profile.py now can load and save data
This commit is contained in:
parent
14dd46b716
commit
3481d3385b
2 changed files with 29 additions and 2 deletions
|
@ -10,14 +10,31 @@ class Profile(object):
|
||||||
result = []
|
result = []
|
||||||
# check default path
|
# check default path
|
||||||
for fl in os.listdir(path):
|
for fl in os.listdir(path):
|
||||||
if fl.endswith(".tox"):
|
if fl.endswith('.tox'):
|
||||||
name = fl[:-4]
|
name = fl[:-4]
|
||||||
result.append((path, name))
|
result.append((path, name))
|
||||||
path = os.path.dirname(os.path.abspath(__file__))
|
path = os.path.dirname(os.path.abspath(__file__))
|
||||||
# check current directory
|
# check current directory
|
||||||
for fl in os.listdir(path):
|
for fl in os.listdir(path):
|
||||||
if fl.endswith(".tox"):
|
if fl.endswith('.tox'):
|
||||||
name = fl[:-4]
|
name = fl[:-4]
|
||||||
result.append((path, name))
|
result.append((path, name))
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def open_profile(path, name):
|
||||||
|
Profile._path = path + name + '.tox'
|
||||||
|
with open(Profile._path, 'rb') as fl:
|
||||||
|
data = fl.read()
|
||||||
|
if data:
|
||||||
|
print 'Data loaded from: {}'.format(Profile._path)
|
||||||
|
return data
|
||||||
|
else:
|
||||||
|
raise IOError('Save file not found. Path: {}'.format(Profile._path))
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def save_profile(data):
|
||||||
|
with open(Profile._path, 'wb') as fl:
|
||||||
|
fl.write(data)
|
||||||
|
print 'Data saved to: {}'.format(Profile._path)
|
||||||
|
|
||||||
|
|
|
@ -42,3 +42,13 @@ class TestProfile():
|
||||||
def test_search(self):
|
def test_search(self):
|
||||||
arr = Profile.find_profiles()
|
arr = Profile.find_profiles()
|
||||||
assert arr
|
assert arr
|
||||||
|
|
||||||
|
def test_open(self):
|
||||||
|
data = Profile.open_profile(Settings.get_default_path(), 'tox_save')
|
||||||
|
assert data
|
||||||
|
|
||||||
|
def test_open_save(self):
|
||||||
|
data = Profile.open_profile(Settings.get_default_path(), 'tox_save')
|
||||||
|
Profile.save_profile(data)
|
||||||
|
new_data = Profile.open_profile(Settings.get_default_path(), 'tox_save')
|
||||||
|
assert new_data == data
|
||||||
|
|
Loading…
Reference in a new issue