From 8f1c2daddf992c21d12b2de3aba08e9ef32ac325 Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Wed, 26 Feb 2020 22:10:09 +0100 Subject: [PATCH] Fixed tests --- tests/reference/proj/2_nwProject.nwx | 10 +++++----- tests/test_project.py | 17 +++++++++++++++++ 2 files changed, 22 insertions(+), 5 deletions(-) diff --git a/tests/reference/proj/2_nwProject.nwx b/tests/reference/proj/2_nwProject.nwx index b78c14a4..0a8e6b4d 100644 --- a/tests/reference/proj/2_nwProject.nwx +++ b/tests/reference/proj/2_nwProject.nwx @@ -1,5 +1,5 @@ - + @@ -72,28 +72,28 @@ 0 0 - + Timeline ROOT TIMELINE New False - + Object ROOT OBJECT New False - + Custom1 ROOT CUSTOM New False - + Custom2 ROOT CUSTOM diff --git a/tests/test_project.py b/tests/test_project.py index c2f4078d..6723dcc7 100644 --- a/tests/test_project.py +++ b/tests/test_project.py @@ -29,6 +29,7 @@ def testProjectNew(nwTempProj,nwRef,nwTemp): assert theProject.newProject() assert theProject.setProjectPath(nwTempProj) assert theProject.saveProject() + assert theProject.closeProject() assert cmpFiles(projFile, refFile, [2]) @pytest.mark.project @@ -41,9 +42,21 @@ def testProjectSave(nwTempProj,nwRef): projFile = path.join(nwTempProj,"nwProject.nwx") refFile = path.join(nwRef,"proj","1_nwProject.nwx") assert theProject.saveProject() + assert theProject.closeProject() assert cmpFiles(projFile, refFile, [2]) assert not theProject.projChanged +@pytest.mark.project +def testProjectOpenTwice(nwTempProj,nwRef): + projFile = path.join(nwTempProj,"nwProject.nwx") + refFile = path.join(nwRef,"proj","1_nwProject.nwx") + assert theProject.openProject(projFile) + assert not theProject.openProject(projFile) + assert theProject.openProject(projFile, overrideLock=True) + assert theProject.saveProject() + assert theProject.closeProject() + assert cmpFiles(projFile, refFile, [2]) + @pytest.mark.project def testProjectNewRoot(nwTempProj,nwRef): projFile = path.join(nwTempProj,"nwProject.nwx") @@ -59,6 +72,7 @@ def testProjectNewRoot(nwTempProj,nwRef): assert isinstance(theProject.newRoot("Custom2", nwItemClass.CUSTOM), str) assert theProject.projChanged assert theProject.saveProject() + assert theProject.closeProject() assert cmpFiles(projFile, refFile, [2]) assert not theProject.projChanged @@ -96,6 +110,8 @@ def testIndexScanThis(nwTempProj): assert str(theBits) == "['@tag', 'this', 'and this']" assert str(thePos) == "[0, 6, 12]" + assert theProject.closeProject() + @pytest.mark.project def testBuildIndex(nwTempProj): projFile = path.join(nwTempProj,"nwProject.nwx") @@ -117,3 +133,4 @@ def testBuildIndex(nwTempProj): assert theIndex.buildNovelList() assert str(theIndex.novelList) == "[[1, 1, 'Novel', 'SCENE'], [3, 2, 'Chapter', 'SCENE'], [5, 3, 'Scene', 'SCENE'], [7, 4, 'Section', 'SCENE']]" assert str(theIndex.novelOrder) == "['31489056e0916:1', '31489056e0916:3', '31489056e0916:5', '31489056e0916:7']" + assert theProject.closeProject()