Пример #1
0
 def test_happy_path(self):
     with tempdir_context() as tempdir:
         zip_path = tempdir / "importmodule.1.zip"
         with zipfile.ZipFile(zip_path, mode="w") as zf:
             zf.writestr(
                 "importmodule.yaml",
                 json.dumps(
                     dict(
                         id_name="importmodule",
                         name="Importable module",
                         category="Clean",
                         parameters=[],
                     )).encode("utf-8"),
             )
             zf.writestr("importmodule.py",
                         b"def render(table, params): return table")
         clientside_module = import_zipfile(zip_path)
     self.assertEqual(
         clientside_module,
         clientside.Module(
             spec=ModuleSpec(
                 id_name="importmodule",
                 name="Importable module",
                 category="Clean",
                 parameters=[],
             ),
             js_module="",
         ),
     )
Пример #2
0
 def test_validate_detect_exec_error(self):
     with tempdir_context() as tempdir:
         zip_path = tempdir / "badpy.1.zip"
         with zipfile.ZipFile(zip_path, mode="w") as zf:
             zf.writestr(
                 "badpy.yaml",
                 json.dumps(
                     dict(
                         name="Exec-error Python",
                         id_name="badpy",
                         category="Clean",
                         parameters=[],
                     )).encode("utf-8"),
             )
             zf.writestr("badpy.py", b"print(badname)")
         with self.assertRaises(WorkbenchModuleImportError) as cm:
             import_zipfile(zip_path)
     self.assertIsInstance(cm.exception.__cause__, ModuleExitedError)
Пример #3
0
 def test_validate_invalid_spec(self):
     with tempdir_context() as tempdir:
         zip_path = tempdir / "badyaml.1.zip"
         with zipfile.ZipFile(zip_path, mode="w") as zf:
             zf.writestr(
                 "badyaml.yaml",
                 (b"{"
                  b'"idname": "badyaml",'
                  b'"name": "Missing id_name",'
                  b'"category": "Clean",'
                  b'"parameters": []'
                  b"}"),
             )
             zf.writestr("badyaml.py",
                         "def render(table, params):\n  return table")
         with self.assertRaises(WorkbenchModuleImportError) as cm:
             import_zipfile(zip_path)
     self.assertIsInstance(cm.exception.__cause__, ValueError)
Пример #4
0
 def test_validate_detect_python_syntax_errors(self):
     with tempdir_context() as tempdir:
         zip_path = tempdir / "badpy.1.zip"
         with zipfile.ZipFile(zip_path, mode="w") as zf:
             zf.writestr(
                 "badpy.yaml",
                 json.dumps(
                     dict(
                         name="Syntax-error Python",
                         id_name="badpy",
                         category="Clean",
                         parameters=[],
                     )).encode("utf-8"),
             )
             zf.writestr("badpy.py",
                         'def render(table, params):\n  cols = split(","')
         with self.assertRaises(WorkbenchModuleImportError) as cm:
             import_zipfile(zip_path)
     self.assertIsInstance(cm.exception.__cause__, SyntaxError)