Partially write tests for sequence refactor

This commit is contained in:
Dion Moult
2022-08-30 11:08:26 +10:00
parent 37dec500fd
commit 804c0f4a77
9 changed files with 121 additions and 72 deletions
@@ -4,8 +4,6 @@ Feature: Bimtester
Scenario: Execute Bimtester
Given an empty IFC project
When I set "scene.BimTesterProperties.should_load_from_memory" to "True"
And I set "scene.BimTesterProperties.feature" to "{cwd}/test/files/sample-ids.xml"
And I set "scene.BimTesterProperties.feature" to "{cwd}/test/files/sample.feature"
And I press "bim.execute_bim_tester"
Then nothing happens
# IDS is continuously changing right now. Stable release scheduled for March 2022.
#Then the file "{cwd}/test/files/sample-ids.xml.html" should contain "Tests passed: <strong>1 / 1</strong> (100%)"
+7
View File
@@ -175,6 +175,13 @@ def selector():
prophet.verify()
@pytest.fixture
def sequence():
prophet = Prophecy(blenderbim.core.tool.Sequence)
yield prophet
prophet.verify()
@pytest.fixture
def spatial():
prophet = Prophecy(blenderbim.core.tool.Spatial)
+56
View File
@@ -0,0 +1,56 @@
# BlenderBIM Add-on - OpenBIM Blender Add-on
# Copyright (C) 2022 Dion Moult <dion@thinkmoult.com>
#
# This file is part of BlenderBIM Add-on.
#
# BlenderBIM Add-on is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# BlenderBIM Add-on 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with BlenderBIM Add-on. If not, see <http://www.gnu.org/licenses/>.
import blenderbim.core.sequence as subject
from test.core.bootstrap import ifc, sequence
class TestAddWorkPlan:
def test_run(self, ifc):
ifc.run("sequence.add_work_plan").should_be_called().will_return("work_plan")
assert subject.add_work_plan(ifc) == "work_plan"
class TestRemoveWorkPlan:
def test_run(self, ifc):
ifc.run("sequence.remove_work_plan", work_plan="work_plan").should_be_called()
subject.remove_work_plan(ifc, work_plan="work_plan")
class TestEnableEditingWorkPlan:
def test_run(self, sequence):
sequence.load_work_plan_attributes("work_plan").should_be_called()
sequence.enable_editing_work_plan("work_plan").should_be_called()
subject.enable_editing_work_plan(sequence, work_plan="work_plan")
class TestDisableEditingWorkPlan:
def test_run(self, sequence):
sequence.disable_editing_work_plan().should_be_called()
subject.disable_editing_work_plan(sequence)
class TestEditWorkPlan:
def test_run(self, ifc, sequence):
sequence.get_work_plan_attributes().should_be_called().will_return("attributes")
ifc.run("sequence.edit_work_plan", work_plan="work_plan", attributes="attributes").should_be_called()
sequence.disable_editing_work_plan().should_be_called()
subject.edit_work_plan(ifc, sequence, work_plan="work_plan")
# TODO continue writing tests
+8
View File
@@ -0,0 +1,8 @@
Feature: Project setup
In order to view the BIM data
As any interested stakeholder
We need an IFC file
Scenario: Receiving a file
* IFC data must use the "IFC4" schema