they're no longer used since non-diverted stores are the default now. Change-Id: I277b819340c2b69e1fd06607e562221469b77926
31 lines
782 B
Python
31 lines
782 B
Python
import shutil
|
|
|
|
from testlib.fixtures.file_helper import with_files
|
|
from testlib.fixtures.nix import Nix
|
|
from testlib.utils import get_global_asset_pack
|
|
|
|
|
|
@with_files(get_global_asset_pack("dependencies"))
|
|
def test_dump_db(nix: Nix):
|
|
nix.nix_build(["dependencies.nix", "-o", "result"]).run().ok()
|
|
|
|
res = nix.nix_store(["-qR", "result"]).run().ok()
|
|
deps = res.stdout_plain
|
|
|
|
res = nix.nix_store(["--dump-db"]).run().ok()
|
|
dump = res.stdout
|
|
|
|
shutil.rmtree(nix.env.dirs.nix_state_dir / "db")
|
|
|
|
nix.nix_store(["--load-db"]).with_stdin(dump).run().ok()
|
|
|
|
res = nix.nix_store(["-qR", "result"]).run().ok()
|
|
deps2 = res.stdout_plain
|
|
|
|
assert deps == deps2
|
|
|
|
res = nix.nix_store(["--dump-db"]).run().ok()
|
|
dump2 = res.stdout
|
|
|
|
assert dump == dump2
|