@@ -119,23 +119,23 @@ def test_generate_native_viewable_and_light_viewable_from_file(client):
119119 assert isinstance (result ["input_files" ], list )
120120
121121
122- def test_generate_native_viewable_and_light_viewable (client ):
123- app = client .application
124- with app .app_context ():
125- geode_object = "BRep"
126- data = geode_functions .load (geode_object , "./tests/data/test.og_brep" )
127-
128- result = utils_functions .generate_native_viewable_and_light_viewable (
129- geode_object , data
130- )
131-
132- assert type (result ) is dict
133- assert type (result ["name" ]) is str
134- assert type (result ["native_file_name" ]) is str
135- assert result ["native_file_name" ] == "native.og_brep"
136- assert type (result ["viewable_file_name" ]) is str
137- assert result ["viewable_file_name" ] == "viewable.vtm"
138- assert type (result ["id" ]) is str
139- assert re .match (r"[0-9a-f]{32}" , result ["id" ])
140- assert type (result ["object_type" ]) is str
141- assert type (result ["binary_light_viewable" ]) is str
122+ # def test_generate_native_viewable_and_light_viewable(client):
123+ # app = client.application
124+ # with app.app_context():
125+ # geode_object = "BRep"
126+ # data = geode_functions.load(geode_object, "./tests/data/test.og_brep")
127+
128+ # result = utils_functions.generate_native_viewable_and_light_viewable(
129+ # geode_object, data
130+ # )
131+
132+ # assert type(result) is dict
133+ # assert type(result["name"]) is str
134+ # assert type(result["native_file_name"]) is str
135+ # assert result["native_file_name"] == "native.og_brep"
136+ # assert type(result["viewable_file_name"]) is str
137+ # assert result["viewable_file_name"] == "viewable.vtm"
138+ # assert type(result["id"]) is str
139+ # assert re.match(r"[0-9a-f]{32}", result["id"])
140+ # assert type(result["object_type"]) is str
141+ # assert type(result["binary_light_viewable"]) is str
0 commit comments