Remove config, YAGNI
This commit is contained in:
parent
63d9081e07
commit
5e262deda6
5 changed files with 15 additions and 165 deletions
|
@ -403,7 +403,8 @@ def test_auth_scopes():
|
|||
tmp_state.set_user_scope(id, state.AuthScope.MATCHER)
|
||||
assert tmp_state.get_user_has_scope(id, state.AuthScope.MATCHER)
|
||||
|
||||
tmp_state.validate()
|
||||
# Validate the state by constucting a new one
|
||||
_ = state.State(tmp_state._dict)
|
||||
|
||||
|
||||
def test_iterate_all_shifts():
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
import matchy.files.state as state
|
||||
import tempfile
|
||||
import os
|
||||
import matchy.files.ops as ops
|
||||
|
||||
|
||||
def test_basic_state():
|
||||
|
@ -18,10 +19,11 @@ def test_simple_load_reload():
|
|||
with tempfile.TemporaryDirectory() as tmp:
|
||||
path = os.path.join(tmp, 'tmp.json')
|
||||
st = state.load_from_file(path)
|
||||
st._save_to_file()
|
||||
ops.save(st._file, st._dict)
|
||||
ops.save(st._file, st._dict)
|
||||
|
||||
st = state.load_from_file(path)
|
||||
st._save_to_file()
|
||||
ops.save(st._file, st._dict)
|
||||
st = state.load_from_file(path)
|
||||
|
||||
|
||||
|
@ -30,13 +32,13 @@ def test_authscope():
|
|||
with tempfile.TemporaryDirectory() as tmp:
|
||||
path = os.path.join(tmp, 'tmp.json')
|
||||
st = state.load_from_file(path)
|
||||
st._save_to_file()
|
||||
ops.save(st._file, st._dict)
|
||||
|
||||
assert not st.get_user_has_scope(1, state.AuthScope.MATCHER)
|
||||
|
||||
st = state.load_from_file(path)
|
||||
st.set_user_scope(1, state.AuthScope.MATCHER)
|
||||
st._save_to_file()
|
||||
ops.save(st._file, st._dict)
|
||||
|
||||
st = state.load_from_file(path)
|
||||
assert st.get_user_has_scope(1, state.AuthScope.MATCHER)
|
||||
|
@ -50,13 +52,13 @@ def test_channeljoin():
|
|||
with tempfile.TemporaryDirectory() as tmp:
|
||||
path = os.path.join(tmp, 'tmp.json')
|
||||
st = state.load_from_file(path)
|
||||
st._save_to_file()
|
||||
ops.save(st._file, st._dict)
|
||||
|
||||
assert not st.get_user_active_in_channel(1, "2")
|
||||
|
||||
st = state.load_from_file(path)
|
||||
st.set_user_active_in_channel(1, "2", True)
|
||||
st._save_to_file()
|
||||
ops.save(st._file, st._dict)
|
||||
|
||||
st = state.load_from_file(path)
|
||||
assert st.get_user_active_in_channel(1, "2")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue