superacli 1.1.4 → 1.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/__tests__/adapter-schema.test.js +2 -0
- package/__tests__/config.test.js +62 -1
- package/__tests__/help-json.test.js +2 -0
- package/__tests__/mcp-adapter.test.js +14 -4
- package/__tests__/mcp-local.test.js +159 -0
- package/__tests__/mcp-stdio-jsonrpc.test.js +105 -0
- package/__tests__/monty-plugin.test.js +121 -0
- package/__tests__/plugin-browser-use-uninstall.test.js +23 -0
- package/__tests__/plugin-browser-use.test.js +77 -0
- package/__tests__/plugins-command.test.js +92 -1
- package/__tests__/plugins-learn.test.js +62 -0
- package/__tests__/plugins-registry.test.js +3 -1
- package/__tests__/resend-plugin.test.js +101 -0
- package/__tests__/skills.test.js +4 -0
- package/cli/adapter-schema.js +3 -2
- package/cli/adapters/mcp.js +22 -3
- package/cli/adapters/process.js +34 -7
- package/cli/config.js +27 -1
- package/cli/help-json.js +2 -2
- package/cli/mcp-diagnostics.js +152 -0
- package/cli/mcp-discovery.js +221 -0
- package/cli/mcp-local.js +267 -25
- package/cli/mcp-stdio-jsonrpc.js +246 -0
- package/cli/plugin-install-guidance.js +25 -0
- package/cli/plugins-command.js +86 -3
- package/cli/plugins-learn.js +177 -0
- package/cli/plugins-manager.js +3 -0
- package/cli/plugins-registry.js +2 -1
- package/cli/skills-mcp.js +102 -0
- package/cli/skills.js +6 -40
- package/cli/supercli.js +7 -2
- package/docs/initial/mcp-local-mode.md +35 -0
- package/docs/mcp-cheatsheet.md +324 -0
- package/docs/plugins.md +7 -0
- package/package.json +1 -1
- package/plugins/browser-use/plugin.json +23 -0
- package/plugins/browser-use/scripts/post-install.js +146 -0
- package/plugins/browser-use/scripts/post-uninstall.js +28 -0
- package/plugins/browser-use/skills/quickstart/SKILL.md +47 -0
- package/plugins/monty/README.md +49 -0
- package/plugins/monty/plugin.json +69 -0
- package/plugins/monty/scripts/post-install.js +73 -0
- package/plugins/monty/scripts/post-uninstall.js +23 -0
- package/plugins/monty/scripts/run-python.js +140 -0
- package/plugins/monty/scripts/setup-monty.js +27 -0
- package/plugins/plugins.json +29 -0
- package/plugins/resend/plugin.json +94 -0
- package/plugins/resend/scripts/post-install.js +59 -0
- package/plugins/resend/scripts/post-uninstall.js +23 -0
- package/plugins/resend/scripts/setup-resend.js +27 -0
- package/plugins/resend/skills/quickstart/SKILL.md +61 -0
- package/ref-monty/.cargo/config.toml +3 -0
- package/ref-monty/.claude/settings.json +60 -0
- package/ref-monty/.claude/skills/fastmod/SKILL.md +22 -0
- package/ref-monty/.claude/skills/python-playground/SKILL.md +47 -0
- package/ref-monty/.codecov.yml +12 -0
- package/ref-monty/.github/actions/build-pgo-wheel/action.yml +72 -0
- package/ref-monty/.github/workflows/ci.yml +776 -0
- package/ref-monty/.github/workflows/codspeed.yml +45 -0
- package/ref-monty/.github/workflows/init-npm-packages.yml +82 -0
- package/ref-monty/.pre-commit-config.yaml +47 -0
- package/ref-monty/.python-version +1 -0
- package/ref-monty/.rustfmt.toml +4 -0
- package/ref-monty/.zed/settings.json +11 -0
- package/ref-monty/CLAUDE.md +535 -0
- package/ref-monty/Cargo.lock +3798 -0
- package/ref-monty/Cargo.toml +87 -0
- package/ref-monty/LICENSE +21 -0
- package/ref-monty/Makefile +216 -0
- package/ref-monty/README.md +430 -0
- package/ref-monty/RELEASING.md +47 -0
- package/ref-monty/crates/fuzz/Cargo.toml +30 -0
- package/ref-monty/crates/fuzz/fuzz_targets/string_input_panic.rs +37 -0
- package/ref-monty/crates/fuzz/fuzz_targets/tokens_input_panic.rs +552 -0
- package/ref-monty/crates/monty/Cargo.toml +68 -0
- package/ref-monty/crates/monty/benches/main.rs +247 -0
- package/ref-monty/crates/monty/build.rs +10 -0
- package/ref-monty/crates/monty/src/args.rs +733 -0
- package/ref-monty/crates/monty/src/asyncio.rs +179 -0
- package/ref-monty/crates/monty/src/builtins/abs.rs +55 -0
- package/ref-monty/crates/monty/src/builtins/all.rs +30 -0
- package/ref-monty/crates/monty/src/builtins/any.rs +30 -0
- package/ref-monty/crates/monty/src/builtins/bin.rs +59 -0
- package/ref-monty/crates/monty/src/builtins/chr.rs +46 -0
- package/ref-monty/crates/monty/src/builtins/divmod.rs +164 -0
- package/ref-monty/crates/monty/src/builtins/enumerate.rs +52 -0
- package/ref-monty/crates/monty/src/builtins/filter.rs +67 -0
- package/ref-monty/crates/monty/src/builtins/getattr.rs +65 -0
- package/ref-monty/crates/monty/src/builtins/hash.rs +28 -0
- package/ref-monty/crates/monty/src/builtins/hex.rs +58 -0
- package/ref-monty/crates/monty/src/builtins/id.rs +24 -0
- package/ref-monty/crates/monty/src/builtins/isinstance.rs +68 -0
- package/ref-monty/crates/monty/src/builtins/len.rs +25 -0
- package/ref-monty/crates/monty/src/builtins/map.rs +98 -0
- package/ref-monty/crates/monty/src/builtins/min_max.rs +113 -0
- package/ref-monty/crates/monty/src/builtins/mod.rs +246 -0
- package/ref-monty/crates/monty/src/builtins/next.rs +21 -0
- package/ref-monty/crates/monty/src/builtins/oct.rs +59 -0
- package/ref-monty/crates/monty/src/builtins/ord.rs +67 -0
- package/ref-monty/crates/monty/src/builtins/pow.rs +365 -0
- package/ref-monty/crates/monty/src/builtins/print.rs +141 -0
- package/ref-monty/crates/monty/src/builtins/repr.rs +16 -0
- package/ref-monty/crates/monty/src/builtins/reversed.rs +28 -0
- package/ref-monty/crates/monty/src/builtins/round.rs +174 -0
- package/ref-monty/crates/monty/src/builtins/sorted.rs +151 -0
- package/ref-monty/crates/monty/src/builtins/sum.rs +66 -0
- package/ref-monty/crates/monty/src/builtins/type_.rs +16 -0
- package/ref-monty/crates/monty/src/builtins/zip.rs +77 -0
- package/ref-monty/crates/monty/src/bytecode/builder.rs +699 -0
- package/ref-monty/crates/monty/src/bytecode/code.rs +310 -0
- package/ref-monty/crates/monty/src/bytecode/compiler.rs +3206 -0
- package/ref-monty/crates/monty/src/bytecode/mod.rs +24 -0
- package/ref-monty/crates/monty/src/bytecode/op.rs +617 -0
- package/ref-monty/crates/monty/src/bytecode/vm/async_exec.rs +1058 -0
- package/ref-monty/crates/monty/src/bytecode/vm/attr.rs +63 -0
- package/ref-monty/crates/monty/src/bytecode/vm/binary.rs +487 -0
- package/ref-monty/crates/monty/src/bytecode/vm/call.rs +767 -0
- package/ref-monty/crates/monty/src/bytecode/vm/collections.rs +741 -0
- package/ref-monty/crates/monty/src/bytecode/vm/compare.rs +147 -0
- package/ref-monty/crates/monty/src/bytecode/vm/exceptions.rs +297 -0
- package/ref-monty/crates/monty/src/bytecode/vm/format.rs +132 -0
- package/ref-monty/crates/monty/src/bytecode/vm/mod.rs +1958 -0
- package/ref-monty/crates/monty/src/bytecode/vm/scheduler.rs +620 -0
- package/ref-monty/crates/monty/src/exception_private.rs +1513 -0
- package/ref-monty/crates/monty/src/exception_public.rs +346 -0
- package/ref-monty/crates/monty/src/expressions.rs +694 -0
- package/ref-monty/crates/monty/src/fstring.rs +854 -0
- package/ref-monty/crates/monty/src/function.rs +119 -0
- package/ref-monty/crates/monty/src/heap.rs +1073 -0
- package/ref-monty/crates/monty/src/heap_data.rs +985 -0
- package/ref-monty/crates/monty/src/heap_traits.rs +312 -0
- package/ref-monty/crates/monty/src/intern.rs +837 -0
- package/ref-monty/crates/monty/src/io.rs +106 -0
- package/ref-monty/crates/monty/src/lib.rs +52 -0
- package/ref-monty/crates/monty/src/modules/asyncio.rs +144 -0
- package/ref-monty/crates/monty/src/modules/math.rs +1453 -0
- package/ref-monty/crates/monty/src/modules/mod.rs +120 -0
- package/ref-monty/crates/monty/src/modules/os.rs +116 -0
- package/ref-monty/crates/monty/src/modules/pathlib.rs +33 -0
- package/ref-monty/crates/monty/src/modules/re.rs +606 -0
- package/ref-monty/crates/monty/src/modules/sys.rs +60 -0
- package/ref-monty/crates/monty/src/modules/typing.rs +70 -0
- package/ref-monty/crates/monty/src/namespace.rs +21 -0
- package/ref-monty/crates/monty/src/object.rs +1040 -0
- package/ref-monty/crates/monty/src/os.rs +215 -0
- package/ref-monty/crates/monty/src/parse.rs +1730 -0
- package/ref-monty/crates/monty/src/prepare.rs +3015 -0
- package/ref-monty/crates/monty/src/repl.rs +1109 -0
- package/ref-monty/crates/monty/src/resource.rs +559 -0
- package/ref-monty/crates/monty/src/run.rs +457 -0
- package/ref-monty/crates/monty/src/run_progress.rs +821 -0
- package/ref-monty/crates/monty/src/signature.rs +651 -0
- package/ref-monty/crates/monty/src/sorting.rs +100 -0
- package/ref-monty/crates/monty/src/types/bytes.rs +2356 -0
- package/ref-monty/crates/monty/src/types/dataclass.rs +345 -0
- package/ref-monty/crates/monty/src/types/dict.rs +879 -0
- package/ref-monty/crates/monty/src/types/dict_view.rs +619 -0
- package/ref-monty/crates/monty/src/types/iter.rs +799 -0
- package/ref-monty/crates/monty/src/types/list.rs +929 -0
- package/ref-monty/crates/monty/src/types/long_int.rs +211 -0
- package/ref-monty/crates/monty/src/types/mod.rs +48 -0
- package/ref-monty/crates/monty/src/types/module.rs +146 -0
- package/ref-monty/crates/monty/src/types/namedtuple.rs +261 -0
- package/ref-monty/crates/monty/src/types/path.rs +596 -0
- package/ref-monty/crates/monty/src/types/property.rs +35 -0
- package/ref-monty/crates/monty/src/types/py_trait.rs +322 -0
- package/ref-monty/crates/monty/src/types/range.rs +285 -0
- package/ref-monty/crates/monty/src/types/re_match.rs +522 -0
- package/ref-monty/crates/monty/src/types/re_pattern.rs +726 -0
- package/ref-monty/crates/monty/src/types/set.rs +1373 -0
- package/ref-monty/crates/monty/src/types/slice.rs +257 -0
- package/ref-monty/crates/monty/src/types/str.rs +2051 -0
- package/ref-monty/crates/monty/src/types/tuple.rs +376 -0
- package/ref-monty/crates/monty/src/types/type.rs +407 -0
- package/ref-monty/crates/monty/src/value.rs +2558 -0
- package/ref-monty/crates/monty/test_cases/args__dict_get_no_args.py +3 -0
- package/ref-monty/crates/monty/test_cases/args__dict_get_too_many.py +3 -0
- package/ref-monty/crates/monty/test_cases/args__dict_items_with_args.py +3 -0
- package/ref-monty/crates/monty/test_cases/args__dict_keys_with_args.py +3 -0
- package/ref-monty/crates/monty/test_cases/args__dict_pop_no_args.py +3 -0
- package/ref-monty/crates/monty/test_cases/args__dict_pop_too_many.py +3 -0
- package/ref-monty/crates/monty/test_cases/args__dict_values_with_args.py +3 -0
- package/ref-monty/crates/monty/test_cases/args__id_too_many.py +2 -0
- package/ref-monty/crates/monty/test_cases/args__len_no_args.py +2 -0
- package/ref-monty/crates/monty/test_cases/args__len_too_many.py +2 -0
- package/ref-monty/crates/monty/test_cases/args__len_type_error_int.py +9 -0
- package/ref-monty/crates/monty/test_cases/args__len_type_error_none.py +9 -0
- package/ref-monty/crates/monty/test_cases/args__list_append_no_args.py +3 -0
- package/ref-monty/crates/monty/test_cases/args__list_append_too_many.py +3 -0
- package/ref-monty/crates/monty/test_cases/args__list_insert_too_few.py +3 -0
- package/ref-monty/crates/monty/test_cases/args__list_insert_too_many.py +3 -0
- package/ref-monty/crates/monty/test_cases/args__repr_no_args.py +2 -0
- package/ref-monty/crates/monty/test_cases/arith__div_zero_float.py +2 -0
- package/ref-monty/crates/monty/test_cases/arith__div_zero_int.py +2 -0
- package/ref-monty/crates/monty/test_cases/arith__floordiv_zero_float.py +2 -0
- package/ref-monty/crates/monty/test_cases/arith__floordiv_zero_int.py +2 -0
- package/ref-monty/crates/monty/test_cases/arith__pow_zero_neg.py +2 -0
- package/ref-monty/crates/monty/test_cases/arith__pow_zero_neg_builtin.py +9 -0
- package/ref-monty/crates/monty/test_cases/assert__expr_fail.py +2 -0
- package/ref-monty/crates/monty/test_cases/assert__fail.py +2 -0
- package/ref-monty/crates/monty/test_cases/assert__fail_msg.py +2 -0
- package/ref-monty/crates/monty/test_cases/assert__fn_fail.py +3 -0
- package/ref-monty/crates/monty/test_cases/assert__ops.py +11 -0
- package/ref-monty/crates/monty/test_cases/async__asyncio_run.py +47 -0
- package/ref-monty/crates/monty/test_cases/async__basic.py +10 -0
- package/ref-monty/crates/monty/test_cases/async__closure.py +14 -0
- package/ref-monty/crates/monty/test_cases/async__double_await_coroutine.py +16 -0
- package/ref-monty/crates/monty/test_cases/async__exception.py +10 -0
- package/ref-monty/crates/monty/test_cases/async__ext_call.py +73 -0
- package/ref-monty/crates/monty/test_cases/async__gather_all.py +85 -0
- package/ref-monty/crates/monty/test_cases/async__nested_await.py +15 -0
- package/ref-monty/crates/monty/test_cases/async__nested_gather_ext.py +37 -0
- package/ref-monty/crates/monty/test_cases/async__not_awaitable.py +10 -0
- package/ref-monty/crates/monty/test_cases/async__not_imported.py +14 -0
- package/ref-monty/crates/monty/test_cases/async__recursion_depth_isolation.py +27 -0
- package/ref-monty/crates/monty/test_cases/async__return_types.py +31 -0
- package/ref-monty/crates/monty/test_cases/async__sequential.py +16 -0
- package/ref-monty/crates/monty/test_cases/async__traceback.py +19 -0
- package/ref-monty/crates/monty/test_cases/async__with_args.py +14 -0
- package/ref-monty/crates/monty/test_cases/attr__get_int_error.py +9 -0
- package/ref-monty/crates/monty/test_cases/attr__get_list_error.py +9 -0
- package/ref-monty/crates/monty/test_cases/attr__set_frozen_nonfield.py +12 -0
- package/ref-monty/crates/monty/test_cases/attr__set_int_error.py +10 -0
- package/ref-monty/crates/monty/test_cases/attr__set_list_error.py +10 -0
- package/ref-monty/crates/monty/test_cases/bench__kitchen_sink.py +68 -0
- package/ref-monty/crates/monty/test_cases/bool__ops.py +20 -0
- package/ref-monty/crates/monty/test_cases/builtin__add_type_error.py +2 -0
- package/ref-monty/crates/monty/test_cases/builtin__filter.py +62 -0
- package/ref-monty/crates/monty/test_cases/builtin__filter_not_iterable.py +11 -0
- package/ref-monty/crates/monty/test_cases/builtin__getattr.py +84 -0
- package/ref-monty/crates/monty/test_cases/builtin__iter_funcs.py +42 -0
- package/ref-monty/crates/monty/test_cases/builtin__iter_next.py +66 -0
- package/ref-monty/crates/monty/test_cases/builtin__map.py +74 -0
- package/ref-monty/crates/monty/test_cases/builtin__map_not_iterable.py +11 -0
- package/ref-monty/crates/monty/test_cases/builtin__math_funcs.py +154 -0
- package/ref-monty/crates/monty/test_cases/builtin__more_iter_funcs.py +148 -0
- package/ref-monty/crates/monty/test_cases/builtin__next_stop_iteration.py +10 -0
- package/ref-monty/crates/monty/test_cases/builtin__print_invalid_kwarg.py +9 -0
- package/ref-monty/crates/monty/test_cases/builtin__print_kwargs.py +12 -0
- package/ref-monty/crates/monty/test_cases/builtin__repr.py +3 -0
- package/ref-monty/crates/monty/test_cases/builtin__string_funcs.py +73 -0
- package/ref-monty/crates/monty/test_cases/bytes__decode_invalid_utf8.py +18 -0
- package/ref-monty/crates/monty/test_cases/bytes__endswith_str_error.py +10 -0
- package/ref-monty/crates/monty/test_cases/bytes__getitem_index_error.py +10 -0
- package/ref-monty/crates/monty/test_cases/bytes__index_start_gt_end.py +10 -0
- package/ref-monty/crates/monty/test_cases/bytes__methods.py +394 -0
- package/ref-monty/crates/monty/test_cases/bytes__negative_count.py +9 -0
- package/ref-monty/crates/monty/test_cases/bytes__ops.py +90 -0
- package/ref-monty/crates/monty/test_cases/bytes__startswith_str_error.py +10 -0
- package/ref-monty/crates/monty/test_cases/call_object.py +3 -0
- package/ref-monty/crates/monty/test_cases/chain_comparison__all.py +79 -0
- package/ref-monty/crates/monty/test_cases/closure__param_shadows_outer.py +81 -0
- package/ref-monty/crates/monty/test_cases/closure__pep448.py +203 -0
- package/ref-monty/crates/monty/test_cases/closure__undefined_nonlocal.py +13 -0
- package/ref-monty/crates/monty/test_cases/compare__mixed_types.py +120 -0
- package/ref-monty/crates/monty/test_cases/comprehension__all.py +208 -0
- package/ref-monty/crates/monty/test_cases/comprehension__scope.py +7 -0
- package/ref-monty/crates/monty/test_cases/comprehension__unbound_local.py +14 -0
- package/ref-monty/crates/monty/test_cases/dataclass__basic.py +238 -0
- package/ref-monty/crates/monty/test_cases/dataclass__call_field_error.py +12 -0
- package/ref-monty/crates/monty/test_cases/dataclass__frozen_set_error.py +12 -0
- package/ref-monty/crates/monty/test_cases/dataclass__get_missing_attr_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/dict__get_unhashable_key.py +3 -0
- package/ref-monty/crates/monty/test_cases/dict__literal_unhashable_key.py +2 -0
- package/ref-monty/crates/monty/test_cases/dict__method_pop_missing_error.py +3 -0
- package/ref-monty/crates/monty/test_cases/dict__methods.py +151 -0
- package/ref-monty/crates/monty/test_cases/dict__ops.py +133 -0
- package/ref-monty/crates/monty/test_cases/dict__pop_unhashable_key.py +4 -0
- package/ref-monty/crates/monty/test_cases/dict__popitem_empty.py +9 -0
- package/ref-monty/crates/monty/test_cases/dict__subscript_missing_key.py +3 -0
- package/ref-monty/crates/monty/test_cases/dict__unhashable_dict_key.py +2 -0
- package/ref-monty/crates/monty/test_cases/dict__unhashable_list_key.py +2 -0
- package/ref-monty/crates/monty/test_cases/dict__unpack_type_error.py +2 -0
- package/ref-monty/crates/monty/test_cases/dict__views.py +165 -0
- package/ref-monty/crates/monty/test_cases/edge__all.py +26 -0
- package/ref-monty/crates/monty/test_cases/edge__float_int_mod.py +2 -0
- package/ref-monty/crates/monty/test_cases/edge__int_float_mod.py +2 -0
- package/ref-monty/crates/monty/test_cases/exc__args.py +16 -0
- package/ref-monty/crates/monty/test_cases/exc__str.py +15 -0
- package/ref-monty/crates/monty/test_cases/execute_ok__all.py +54 -0
- package/ref-monty/crates/monty/test_cases/execute_raise__error_instance_str.py +2 -0
- package/ref-monty/crates/monty/test_cases/execute_raise__error_no_args.py +2 -0
- package/ref-monty/crates/monty/test_cases/execute_raise__error_string_arg.py +2 -0
- package/ref-monty/crates/monty/test_cases/execute_raise__error_string_arg_quotes.py +2 -0
- package/ref-monty/crates/monty/test_cases/execute_raise__error_type.py +2 -0
- package/ref-monty/crates/monty/test_cases/execute_raise__raise_instance_via_var.py +4 -0
- package/ref-monty/crates/monty/test_cases/execute_raise__raise_list.py +2 -0
- package/ref-monty/crates/monty/test_cases/execute_raise__raise_number.py +2 -0
- package/ref-monty/crates/monty/test_cases/execute_raise__raise_type_call_via_var.py +4 -0
- package/ref-monty/crates/monty/test_cases/execute_raise__raise_type_direct.py +3 -0
- package/ref-monty/crates/monty/test_cases/execute_raise__raise_type_via_var.py +4 -0
- package/ref-monty/crates/monty/test_cases/ext_call__arg_side_effect_bug.py +22 -0
- package/ref-monty/crates/monty/test_cases/ext_call__augmented.py +17 -0
- package/ref-monty/crates/monty/test_cases/ext_call__augmented_refcount_bug.py +7 -0
- package/ref-monty/crates/monty/test_cases/ext_call__bare_raise_after_resume.py +34 -0
- package/ref-monty/crates/monty/test_cases/ext_call__basic.py +99 -0
- package/ref-monty/crates/monty/test_cases/ext_call__boolean.py +37 -0
- package/ref-monty/crates/monty/test_cases/ext_call__boolean_side_effect_hang.py +17 -0
- package/ref-monty/crates/monty/test_cases/ext_call__closure_bug.py +16 -0
- package/ref-monty/crates/monty/test_cases/ext_call__comparison.py +26 -0
- package/ref-monty/crates/monty/test_cases/ext_call__deep_call_stack.py +18 -0
- package/ref-monty/crates/monty/test_cases/ext_call__elif.py +171 -0
- package/ref-monty/crates/monty/test_cases/ext_call__exc.py +4 -0
- package/ref-monty/crates/monty/test_cases/ext_call__exc_deep_stack.py +39 -0
- package/ref-monty/crates/monty/test_cases/ext_call__exc_in_function.py +17 -0
- package/ref-monty/crates/monty/test_cases/ext_call__exc_nested_functions.py +31 -0
- package/ref-monty/crates/monty/test_cases/ext_call__ext_exc.py +171 -0
- package/ref-monty/crates/monty/test_cases/ext_call__for.py +114 -0
- package/ref-monty/crates/monty/test_cases/ext_call__fstring.py +12 -0
- package/ref-monty/crates/monty/test_cases/ext_call__if.py +135 -0
- package/ref-monty/crates/monty/test_cases/ext_call__if_condition.py +37 -0
- package/ref-monty/crates/monty/test_cases/ext_call__in_closure.py +14 -0
- package/ref-monty/crates/monty/test_cases/ext_call__in_function.py +40 -0
- package/ref-monty/crates/monty/test_cases/ext_call__in_function_simple.py +7 -0
- package/ref-monty/crates/monty/test_cases/ext_call__literals.py +17 -0
- package/ref-monty/crates/monty/test_cases/ext_call__multi_in_func.py +32 -0
- package/ref-monty/crates/monty/test_cases/ext_call__name_lookup.py +69 -0
- package/ref-monty/crates/monty/test_cases/ext_call__name_lookup_undefined.py +4 -0
- package/ref-monty/crates/monty/test_cases/ext_call__nested_calls.py +14 -0
- package/ref-monty/crates/monty/test_cases/ext_call__recursion_bug.py +19 -0
- package/ref-monty/crates/monty/test_cases/ext_call__return.py +28 -0
- package/ref-monty/crates/monty/test_cases/ext_call__side_effects.py +25 -0
- package/ref-monty/crates/monty/test_cases/ext_call__subscript.py +7 -0
- package/ref-monty/crates/monty/test_cases/ext_call__ternary.py +28 -0
- package/ref-monty/crates/monty/test_cases/ext_call__try.py +280 -0
- package/ref-monty/crates/monty/test_cases/ext_call__try_simple.py +10 -0
- package/ref-monty/crates/monty/test_cases/ext_call__unary.py +13 -0
- package/ref-monty/crates/monty/test_cases/frozenset__ops.py +178 -0
- package/ref-monty/crates/monty/test_cases/fstring__all.py +236 -0
- package/ref-monty/crates/monty/test_cases/fstring__error_eq_align_on_str.py +3 -0
- package/ref-monty/crates/monty/test_cases/fstring__error_float_f_on_str.py +3 -0
- package/ref-monty/crates/monty/test_cases/fstring__error_int_d_on_float.py +3 -0
- package/ref-monty/crates/monty/test_cases/fstring__error_int_d_on_str.py +3 -0
- package/ref-monty/crates/monty/test_cases/fstring__error_invalid_spec.py +4 -0
- package/ref-monty/crates/monty/test_cases/fstring__error_invalid_spec_dynamic.py +4 -0
- package/ref-monty/crates/monty/test_cases/fstring__error_invalid_spec_str.py +4 -0
- package/ref-monty/crates/monty/test_cases/fstring__error_str_s_on_int.py +3 -0
- package/ref-monty/crates/monty/test_cases/function__call_duplicate_kwargs.py +6 -0
- package/ref-monty/crates/monty/test_cases/function__call_unpack.py +42 -0
- package/ref-monty/crates/monty/test_cases/function__defaults.py +117 -0
- package/ref-monty/crates/monty/test_cases/function__err_duplicate_arg.py +7 -0
- package/ref-monty/crates/monty/test_cases/function__err_duplicate_first_arg.py +7 -0
- package/ref-monty/crates/monty/test_cases/function__err_duplicate_kwarg_cleanup.py +9 -0
- package/ref-monty/crates/monty/test_cases/function__err_kwonly_as_positional.py +7 -0
- package/ref-monty/crates/monty/test_cases/function__err_missing_all_posonly.py +7 -0
- package/ref-monty/crates/monty/test_cases/function__err_missing_heap_cleanup.py +9 -0
- package/ref-monty/crates/monty/test_cases/function__err_missing_kwonly.py +7 -0
- package/ref-monty/crates/monty/test_cases/function__err_missing_posonly_with_kwarg.py +7 -0
- package/ref-monty/crates/monty/test_cases/function__err_missing_with_posonly.py +7 -0
- package/ref-monty/crates/monty/test_cases/function__err_posonly_as_kwarg.py +7 -0
- package/ref-monty/crates/monty/test_cases/function__err_posonly_first_as_kwarg.py +7 -0
- package/ref-monty/crates/monty/test_cases/function__err_too_many_posonly.py +7 -0
- package/ref-monty/crates/monty/test_cases/function__err_too_many_with_kwonly.py +7 -0
- package/ref-monty/crates/monty/test_cases/function__err_unexpected_kwarg.py +7 -0
- package/ref-monty/crates/monty/test_cases/function__err_unexpected_kwarg_cleanup.py +9 -0
- package/ref-monty/crates/monty/test_cases/function__err_unexpected_kwarg_quote.py +13 -0
- package/ref-monty/crates/monty/test_cases/function__err_unexpected_kwarg_simple.py +7 -0
- package/ref-monty/crates/monty/test_cases/function__err_unpack_duplicate_arg.py +6 -0
- package/ref-monty/crates/monty/test_cases/function__err_unpack_duplicate_heap.py +8 -0
- package/ref-monty/crates/monty/test_cases/function__err_unpack_int.py +6 -0
- package/ref-monty/crates/monty/test_cases/function__err_unpack_nonstring_key.py +6 -0
- package/ref-monty/crates/monty/test_cases/function__err_unpack_not_mapping.py +6 -0
- package/ref-monty/crates/monty/test_cases/function__kwargs_unpacking.py +173 -0
- package/ref-monty/crates/monty/test_cases/function__ops.py +294 -0
- package/ref-monty/crates/monty/test_cases/function__return_none.py +42 -0
- package/ref-monty/crates/monty/test_cases/function__signatures.py +47 -0
- package/ref-monty/crates/monty/test_cases/function__too_few_args_all.py +6 -0
- package/ref-monty/crates/monty/test_cases/function__too_few_args_one.py +6 -0
- package/ref-monty/crates/monty/test_cases/function__too_few_args_two.py +6 -0
- package/ref-monty/crates/monty/test_cases/function__too_many_args_one.py +6 -0
- package/ref-monty/crates/monty/test_cases/function__too_many_args_two.py +6 -0
- package/ref-monty/crates/monty/test_cases/function__too_many_args_zero.py +6 -0
- package/ref-monty/crates/monty/test_cases/global__error_assigned_before.py +7 -0
- package/ref-monty/crates/monty/test_cases/global__ops.py +163 -0
- package/ref-monty/crates/monty/test_cases/hash__dict_unhashable.py +2 -0
- package/ref-monty/crates/monty/test_cases/hash__list_unhashable.py +2 -0
- package/ref-monty/crates/monty/test_cases/hash__ops.py +153 -0
- package/ref-monty/crates/monty/test_cases/id__bytes_literals_distinct.py +3 -0
- package/ref-monty/crates/monty/test_cases/id__int_copy_distinct.py +5 -0
- package/ref-monty/crates/monty/test_cases/id__is_number_is_number.py +3 -0
- package/ref-monty/crates/monty/test_cases/id__non_overlapping_lifetimes_distinct_types.py +10 -0
- package/ref-monty/crates/monty/test_cases/id__non_overlapping_lifetimes_same_types.py +6 -0
- package/ref-monty/crates/monty/test_cases/id__ops.py +97 -0
- package/ref-monty/crates/monty/test_cases/id__str_literals_same.py +3 -0
- package/ref-monty/crates/monty/test_cases/if__elif_else.py +207 -0
- package/ref-monty/crates/monty/test_cases/if__raise_elif.py +11 -0
- package/ref-monty/crates/monty/test_cases/if__raise_else.py +13 -0
- package/ref-monty/crates/monty/test_cases/if__raise_if.py +9 -0
- package/ref-monty/crates/monty/test_cases/if__raise_in_elif_condition.py +18 -0
- package/ref-monty/crates/monty/test_cases/if__raise_in_if_condition.py +16 -0
- package/ref-monty/crates/monty/test_cases/if_else_expr__all.py +55 -0
- package/ref-monty/crates/monty/test_cases/import__error_cannot_import.py +9 -0
- package/ref-monty/crates/monty/test_cases/import__error_module_not_found.py +9 -0
- package/ref-monty/crates/monty/test_cases/import__local_scope.py +68 -0
- package/ref-monty/crates/monty/test_cases/import__os.py +25 -0
- package/ref-monty/crates/monty/test_cases/import__relative_error.py +9 -0
- package/ref-monty/crates/monty/test_cases/import__relative_no_module_error.py +9 -0
- package/ref-monty/crates/monty/test_cases/import__runtime_error_when_executed.py +14 -0
- package/ref-monty/crates/monty/test_cases/import__star_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/import__sys.py +47 -0
- package/ref-monty/crates/monty/test_cases/import__sys_monty.py +28 -0
- package/ref-monty/crates/monty/test_cases/import__type_checking_guard.py +37 -0
- package/ref-monty/crates/monty/test_cases/import__typing.py +25 -0
- package/ref-monty/crates/monty/test_cases/import__typing_type_ignore.py +4 -0
- package/ref-monty/crates/monty/test_cases/int__bigint.py +467 -0
- package/ref-monty/crates/monty/test_cases/int__bigint_errors.py +260 -0
- package/ref-monty/crates/monty/test_cases/int__ops.py +219 -0
- package/ref-monty/crates/monty/test_cases/int__overflow_division.py +84 -0
- package/ref-monty/crates/monty/test_cases/is_variant__all.py +36 -0
- package/ref-monty/crates/monty/test_cases/isinstance__arg2_list_error.py +2 -0
- package/ref-monty/crates/monty/test_cases/isinstance__arg2_type_error.py +2 -0
- package/ref-monty/crates/monty/test_cases/iter__dict_mutation.py +4 -0
- package/ref-monty/crates/monty/test_cases/iter__for.py +243 -0
- package/ref-monty/crates/monty/test_cases/iter__for_loop_unpacking.py +66 -0
- package/ref-monty/crates/monty/test_cases/iter__generator_expr.py +20 -0
- package/ref-monty/crates/monty/test_cases/iter__generator_expr_type.py +7 -0
- package/ref-monty/crates/monty/test_cases/iter__not_iterable.py +3 -0
- package/ref-monty/crates/monty/test_cases/lambda__all.py +145 -0
- package/ref-monty/crates/monty/test_cases/list__extend_not_iterable.py +7 -0
- package/ref-monty/crates/monty/test_cases/list__getitem_out_of_bounds.py +3 -0
- package/ref-monty/crates/monty/test_cases/list__index_not_found.py +9 -0
- package/ref-monty/crates/monty/test_cases/list__index_start_gt_end.py +10 -0
- package/ref-monty/crates/monty/test_cases/list__ops.py +473 -0
- package/ref-monty/crates/monty/test_cases/list__pop_empty.py +9 -0
- package/ref-monty/crates/monty/test_cases/list__pop_out_of_range.py +9 -0
- package/ref-monty/crates/monty/test_cases/list__pop_type_error.py +9 -0
- package/ref-monty/crates/monty/test_cases/list__remove_not_found.py +9 -0
- package/ref-monty/crates/monty/test_cases/list__setitem_dict_index.py +13 -0
- package/ref-monty/crates/monty/test_cases/list__setitem_huge_int_index.py +13 -0
- package/ref-monty/crates/monty/test_cases/list__setitem_index_error.py +10 -0
- package/ref-monty/crates/monty/test_cases/list__setitem_type_error.py +10 -0
- package/ref-monty/crates/monty/test_cases/list__unpack_type_error.py +2 -0
- package/ref-monty/crates/monty/test_cases/longint__index_error.py +3 -0
- package/ref-monty/crates/monty/test_cases/longint__repeat_error.py +3 -0
- package/ref-monty/crates/monty/test_cases/loop__break_continue.py +113 -0
- package/ref-monty/crates/monty/test_cases/loop__break_finally.py +69 -0
- package/ref-monty/crates/monty/test_cases/loop__break_in_function_error.py +13 -0
- package/ref-monty/crates/monty/test_cases/loop__break_in_if_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/loop__break_nested_except_clears.py +55 -0
- package/ref-monty/crates/monty/test_cases/loop__break_outside_error.py +9 -0
- package/ref-monty/crates/monty/test_cases/loop__continue_finally.py +81 -0
- package/ref-monty/crates/monty/test_cases/loop__continue_in_function_error.py +13 -0
- package/ref-monty/crates/monty/test_cases/loop__continue_in_if_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/loop__continue_nested_except_clears.py +60 -0
- package/ref-monty/crates/monty/test_cases/loop__continue_outside_error.py +9 -0
- package/ref-monty/crates/monty/test_cases/math__acos_domain_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__acosh_domain_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__asin_domain_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__atanh_domain_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__cos_inf_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__cosh_overflow_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__exp_overflow_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__factorial_float_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__factorial_negative_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__floor_inf_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__floor_nan_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__floor_str_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__fmod_inf_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__gamma_neg_int_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__gcd_float_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__isqrt_negative_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__ldexp_overflow_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__log1p_domain_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__log_base1_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__log_zero_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__module.py +1432 -0
- package/ref-monty/crates/monty/test_cases/math__pow_domain_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__sin_inf_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__sqrt_negative_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__tan_inf_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__trunc_str_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/method__args_kwargs_unpacking.py +259 -0
- package/ref-monty/crates/monty/test_cases/name_error__unbound_local_func.py +19 -0
- package/ref-monty/crates/monty/test_cases/name_error__unbound_local_module.py +12 -0
- package/ref-monty/crates/monty/test_cases/name_error__undefined_call_chained.py +9 -0
- package/ref-monty/crates/monty/test_cases/name_error__undefined_call_in_expr.py +9 -0
- package/ref-monty/crates/monty/test_cases/name_error__undefined_call_in_function.py +16 -0
- package/ref-monty/crates/monty/test_cases/name_error__undefined_call_with_args.py +9 -0
- package/ref-monty/crates/monty/test_cases/name_error__undefined_global.py +10 -0
- package/ref-monty/crates/monty/test_cases/namedtuple__missing_attr.py +11 -0
- package/ref-monty/crates/monty/test_cases/namedtuple__ops.py +34 -0
- package/ref-monty/crates/monty/test_cases/nonlocal__error_module_level.py +3 -0
- package/ref-monty/crates/monty/test_cases/nonlocal__ops.py +353 -0
- package/ref-monty/crates/monty/test_cases/os__environ.py +40 -0
- package/ref-monty/crates/monty/test_cases/os__getenv_key_list_error.py +5 -0
- package/ref-monty/crates/monty/test_cases/os__getenv_key_type_error.py +5 -0
- package/ref-monty/crates/monty/test_cases/parse_error__complex.py +3 -0
- package/ref-monty/crates/monty/test_cases/pathlib__import.py +11 -0
- package/ref-monty/crates/monty/test_cases/pathlib__os.py +136 -0
- package/ref-monty/crates/monty/test_cases/pathlib__os_read_error.py +12 -0
- package/ref-monty/crates/monty/test_cases/pathlib__pure.py +81 -0
- package/ref-monty/crates/monty/test_cases/pyobject__cycle_dict_self.py +5 -0
- package/ref-monty/crates/monty/test_cases/pyobject__cycle_list_dict.py +6 -0
- package/ref-monty/crates/monty/test_cases/pyobject__cycle_list_self.py +5 -0
- package/ref-monty/crates/monty/test_cases/pyobject__cycle_multiple_refs.py +6 -0
- package/ref-monty/crates/monty/test_cases/range__error_no_args.py +2 -0
- package/ref-monty/crates/monty/test_cases/range__error_step_zero.py +2 -0
- package/ref-monty/crates/monty/test_cases/range__error_too_many_args.py +2 -0
- package/ref-monty/crates/monty/test_cases/range__getitem_index_error.py +10 -0
- package/ref-monty/crates/monty/test_cases/range__ops.py +236 -0
- package/ref-monty/crates/monty/test_cases/re__basic.py +756 -0
- package/ref-monty/crates/monty/test_cases/re__grouping.py +241 -0
- package/ref-monty/crates/monty/test_cases/re__match.py +148 -0
- package/ref-monty/crates/monty/test_cases/recursion__deep_drop.py +26 -0
- package/ref-monty/crates/monty/test_cases/recursion__deep_eq.py +23 -0
- package/ref-monty/crates/monty/test_cases/recursion__deep_hash.py +46 -0
- package/ref-monty/crates/monty/test_cases/recursion__deep_repr.py +12 -0
- package/ref-monty/crates/monty/test_cases/recursion__function_depth.py +13 -0
- package/ref-monty/crates/monty/test_cases/refcount__cycle_mutual_reference.py +18 -0
- package/ref-monty/crates/monty/test_cases/refcount__cycle_self_reference.py +12 -0
- package/ref-monty/crates/monty/test_cases/refcount__dict_basic.py +5 -0
- package/ref-monty/crates/monty/test_cases/refcount__dict_get.py +5 -0
- package/ref-monty/crates/monty/test_cases/refcount__dict_keys_and.py +14 -0
- package/ref-monty/crates/monty/test_cases/refcount__dict_overwrite.py +6 -0
- package/ref-monty/crates/monty/test_cases/refcount__gather_cleanup.py +16 -0
- package/ref-monty/crates/monty/test_cases/refcount__gather_exception.py +18 -0
- package/ref-monty/crates/monty/test_cases/refcount__gather_nested_cancel.py +25 -0
- package/ref-monty/crates/monty/test_cases/refcount__immediate_skipped.py +4 -0
- package/ref-monty/crates/monty/test_cases/refcount__kwargs_unpacking.py +27 -0
- package/ref-monty/crates/monty/test_cases/refcount__list_append_multiple.py +6 -0
- package/ref-monty/crates/monty/test_cases/refcount__list_append_ref.py +5 -0
- package/ref-monty/crates/monty/test_cases/refcount__list_concat.py +5 -0
- package/ref-monty/crates/monty/test_cases/refcount__list_getitem.py +5 -0
- package/ref-monty/crates/monty/test_cases/refcount__list_iadd.py +5 -0
- package/ref-monty/crates/monty/test_cases/refcount__nested_list.py +4 -0
- package/ref-monty/crates/monty/test_cases/refcount__re_pattern_sub_error_paths.py +37 -0
- package/ref-monty/crates/monty/test_cases/refcount__re_search_match.py +34 -0
- package/ref-monty/crates/monty/test_cases/refcount__re_sub_error_paths.py +31 -0
- package/ref-monty/crates/monty/test_cases/refcount__shared_reference.py +4 -0
- package/ref-monty/crates/monty/test_cases/refcount__single_list.py +3 -0
- package/ref-monty/crates/monty/test_cases/repr__cycle_detection.py +24 -0
- package/ref-monty/crates/monty/test_cases/set__ops.py +191 -0
- package/ref-monty/crates/monty/test_cases/set__review_bugs.py +35 -0
- package/ref-monty/crates/monty/test_cases/set__unpack_type_error.py +2 -0
- package/ref-monty/crates/monty/test_cases/slice__invalid_indices.py +2 -0
- package/ref-monty/crates/monty/test_cases/slice__kwargs.py +9 -0
- package/ref-monty/crates/monty/test_cases/slice__no_args.py +9 -0
- package/ref-monty/crates/monty/test_cases/slice__ops.py +149 -0
- package/ref-monty/crates/monty/test_cases/slice__step_zero.py +9 -0
- package/ref-monty/crates/monty/test_cases/slice__step_zero_bytes.py +9 -0
- package/ref-monty/crates/monty/test_cases/slice__step_zero_range.py +9 -0
- package/ref-monty/crates/monty/test_cases/slice__step_zero_str.py +9 -0
- package/ref-monty/crates/monty/test_cases/slice__step_zero_tuple.py +9 -0
- package/ref-monty/crates/monty/test_cases/slice__too_many_args.py +9 -0
- package/ref-monty/crates/monty/test_cases/str__getitem_index_error.py +10 -0
- package/ref-monty/crates/monty/test_cases/str__index_not_found.py +9 -0
- package/ref-monty/crates/monty/test_cases/str__join_no_args.py +9 -0
- package/ref-monty/crates/monty/test_cases/str__join_non_string.py +9 -0
- package/ref-monty/crates/monty/test_cases/str__join_not_iterable.py +9 -0
- package/ref-monty/crates/monty/test_cases/str__join_too_many_args.py +9 -0
- package/ref-monty/crates/monty/test_cases/str__methods.py +327 -0
- package/ref-monty/crates/monty/test_cases/str__ops.py +162 -0
- package/ref-monty/crates/monty/test_cases/str__partition_empty.py +9 -0
- package/ref-monty/crates/monty/test_cases/str__rsplit_empty_sep.py +9 -0
- package/ref-monty/crates/monty/test_cases/str__split_empty_sep.py +9 -0
- package/ref-monty/crates/monty/test_cases/sys__types.py +7 -0
- package/ref-monty/crates/monty/test_cases/traceback__division_error.py +30 -0
- package/ref-monty/crates/monty/test_cases/traceback__index_error.py +17 -0
- package/ref-monty/crates/monty/test_cases/traceback__insert_as_int.py +10 -0
- package/ref-monty/crates/monty/test_cases/traceback__nested_call.py +29 -0
- package/ref-monty/crates/monty/test_cases/traceback__nonlocal_module_scope.py +10 -0
- package/ref-monty/crates/monty/test_cases/traceback__nonlocal_unbound.py +24 -0
- package/ref-monty/crates/monty/test_cases/traceback__range_as_int.py +9 -0
- package/ref-monty/crates/monty/test_cases/traceback__recursion_error.py +23 -0
- package/ref-monty/crates/monty/test_cases/traceback__set_mutation.py +11 -0
- package/ref-monty/crates/monty/test_cases/traceback__undefined_attr_call.py +16 -0
- package/ref-monty/crates/monty/test_cases/traceback__undefined_call.py +16 -0
- package/ref-monty/crates/monty/test_cases/traceback__undefined_raise.py +16 -0
- package/ref-monty/crates/monty/test_cases/try_except__all.py +472 -0
- package/ref-monty/crates/monty/test_cases/try_except__bare_raise_no_context.py +2 -0
- package/ref-monty/crates/monty/test_cases/try_except__invalid_type.py +5 -0
- package/ref-monty/crates/monty/test_cases/tuple__getitem_out_of_bounds.py +3 -0
- package/ref-monty/crates/monty/test_cases/tuple__index_not_found.py +9 -0
- package/ref-monty/crates/monty/test_cases/tuple__index_start_gt_end.py +10 -0
- package/ref-monty/crates/monty/test_cases/tuple__methods.py +19 -0
- package/ref-monty/crates/monty/test_cases/tuple__ops.py +133 -0
- package/ref-monty/crates/monty/test_cases/tuple__unpack_type_error.py +2 -0
- package/ref-monty/crates/monty/test_cases/type__builtin_attr_error.py +9 -0
- package/ref-monty/crates/monty/test_cases/type__bytes_negative.py +2 -0
- package/ref-monty/crates/monty/test_cases/type__cell_not_builtin.py +9 -0
- package/ref-monty/crates/monty/test_cases/type__exception_attr_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/type__float_conversion_error.py +2 -0
- package/ref-monty/crates/monty/test_cases/type__float_repr_both_quotes.py +9 -0
- package/ref-monty/crates/monty/test_cases/type__float_repr_newline.py +9 -0
- package/ref-monty/crates/monty/test_cases/type__float_repr_single_quote.py +9 -0
- package/ref-monty/crates/monty/test_cases/type__int_conversion_error.py +2 -0
- package/ref-monty/crates/monty/test_cases/type__list_not_iterable.py +2 -0
- package/ref-monty/crates/monty/test_cases/type__non_builtin_name_error.py +9 -0
- package/ref-monty/crates/monty/test_cases/type__ops.py +200 -0
- package/ref-monty/crates/monty/test_cases/type__shadow_exc.py +3 -0
- package/ref-monty/crates/monty/test_cases/type__shadow_int.py +9 -0
- package/ref-monty/crates/monty/test_cases/type__shadow_len.py +3 -0
- package/ref-monty/crates/monty/test_cases/type__tuple_not_iterable.py +2 -0
- package/ref-monty/crates/monty/test_cases/type_error__int_add_list.py +2 -0
- package/ref-monty/crates/monty/test_cases/type_error__int_div_str.py +2 -0
- package/ref-monty/crates/monty/test_cases/type_error__int_floordiv_str.py +2 -0
- package/ref-monty/crates/monty/test_cases/type_error__int_iadd_str.py +3 -0
- package/ref-monty/crates/monty/test_cases/type_error__int_mod_str.py +2 -0
- package/ref-monty/crates/monty/test_cases/type_error__int_pow_str.py +2 -0
- package/ref-monty/crates/monty/test_cases/type_error__int_sub_str.py +2 -0
- package/ref-monty/crates/monty/test_cases/type_error__list_add_int.py +2 -0
- package/ref-monty/crates/monty/test_cases/type_error__list_add_str.py +2 -0
- package/ref-monty/crates/monty/test_cases/type_error__list_iadd_int.py +6 -0
- package/ref-monty/crates/monty/test_cases/type_error__str_add_int.py +2 -0
- package/ref-monty/crates/monty/test_cases/type_error__str_iadd_int.py +3 -0
- package/ref-monty/crates/monty/test_cases/type_error__unary_invert_str.py +3 -0
- package/ref-monty/crates/monty/test_cases/type_error__unary_minus_str.py +4 -0
- package/ref-monty/crates/monty/test_cases/type_error__unary_neg_str.py +3 -0
- package/ref-monty/crates/monty/test_cases/type_error__unary_plus_str.py +4 -0
- package/ref-monty/crates/monty/test_cases/typing__types.py +24 -0
- package/ref-monty/crates/monty/test_cases/unpack__nested.py +48 -0
- package/ref-monty/crates/monty/test_cases/unpack__non_sequence.py +9 -0
- package/ref-monty/crates/monty/test_cases/unpack__not_enough.py +9 -0
- package/ref-monty/crates/monty/test_cases/unpack__ops.py +153 -0
- package/ref-monty/crates/monty/test_cases/unpack__star_not_enough.py +9 -0
- package/ref-monty/crates/monty/test_cases/unpack__too_many.py +9 -0
- package/ref-monty/crates/monty/test_cases/version__cpython.py +4 -0
- package/ref-monty/crates/monty/test_cases/walrus__all.py +178 -0
- package/ref-monty/crates/monty/test_cases/while__all.py +206 -0
- package/ref-monty/crates/monty/tests/asyncio.rs +764 -0
- package/ref-monty/crates/monty/tests/binary_serde.rs +185 -0
- package/ref-monty/crates/monty/tests/bytecode_limits.rs +248 -0
- package/ref-monty/crates/monty/tests/datatest_runner.rs +2029 -0
- package/ref-monty/crates/monty/tests/inputs.rs +420 -0
- package/ref-monty/crates/monty/tests/json_serde.rs +250 -0
- package/ref-monty/crates/monty/tests/main.rs +71 -0
- package/ref-monty/crates/monty/tests/math_module.rs +114 -0
- package/ref-monty/crates/monty/tests/name_lookup.rs +482 -0
- package/ref-monty/crates/monty/tests/os_tests.rs +459 -0
- package/ref-monty/crates/monty/tests/parse_errors.rs +441 -0
- package/ref-monty/crates/monty/tests/print_writer.rs +238 -0
- package/ref-monty/crates/monty/tests/py_object.rs +121 -0
- package/ref-monty/crates/monty/tests/regex.rs +90 -0
- package/ref-monty/crates/monty/tests/repl.rs +344 -0
- package/ref-monty/crates/monty/tests/resource_limits.rs +1826 -0
- package/ref-monty/crates/monty/tests/try_from.rs +167 -0
- package/ref-monty/crates/monty-cli/Cargo.toml +25 -0
- package/ref-monty/crates/monty-cli/src/main.rs +541 -0
- package/ref-monty/crates/monty-js/.cargo/config.toml +2 -0
- package/ref-monty/crates/monty-js/.prettierignore +8 -0
- package/ref-monty/crates/monty-js/Cargo.toml +32 -0
- package/ref-monty/crates/monty-js/README.md +207 -0
- package/ref-monty/crates/monty-js/__test__/async.spec.ts +350 -0
- package/ref-monty/crates/monty-js/__test__/basic.spec.ts +114 -0
- package/ref-monty/crates/monty-js/__test__/exceptions.spec.ts +427 -0
- package/ref-monty/crates/monty-js/__test__/external.spec.ts +354 -0
- package/ref-monty/crates/monty-js/__test__/inputs.spec.ts +143 -0
- package/ref-monty/crates/monty-js/__test__/limits.spec.ts +162 -0
- package/ref-monty/crates/monty-js/__test__/package.json +3 -0
- package/ref-monty/crates/monty-js/__test__/print.spec.ts +229 -0
- package/ref-monty/crates/monty-js/__test__/repl.spec.ts +34 -0
- package/ref-monty/crates/monty-js/__test__/serialize.spec.ts +205 -0
- package/ref-monty/crates/monty-js/__test__/start.spec.ts +443 -0
- package/ref-monty/crates/monty-js/__test__/type_check.spec.ts +147 -0
- package/ref-monty/crates/monty-js/__test__/types.spec.ts +319 -0
- package/ref-monty/crates/monty-js/build.rs +61 -0
- package/ref-monty/crates/monty-js/index-header.d.ts +3 -0
- package/ref-monty/crates/monty-js/package-lock.json +4694 -0
- package/ref-monty/crates/monty-js/package.json +100 -0
- package/ref-monty/crates/monty-js/scripts/smoke-test.sh +69 -0
- package/ref-monty/crates/monty-js/smoke-test/package.json +17 -0
- package/ref-monty/crates/monty-js/smoke-test/test.ts +171 -0
- package/ref-monty/crates/monty-js/smoke-test/tsconfig.json +11 -0
- package/ref-monty/crates/monty-js/src/convert.rs +648 -0
- package/ref-monty/crates/monty-js/src/exceptions.rs +293 -0
- package/ref-monty/crates/monty-js/src/lib.rs +41 -0
- package/ref-monty/crates/monty-js/src/limits.rs +53 -0
- package/ref-monty/crates/monty-js/src/monty_cls.rs +1407 -0
- package/ref-monty/crates/monty-js/tsconfig.json +17 -0
- package/ref-monty/crates/monty-js/wrapper.ts +701 -0
- package/ref-monty/crates/monty-python/Cargo.toml +38 -0
- package/ref-monty/crates/monty-python/README.md +134 -0
- package/ref-monty/crates/monty-python/build.rs +4 -0
- package/ref-monty/crates/monty-python/example.py +40 -0
- package/ref-monty/crates/monty-python/exercise.py +46 -0
- package/ref-monty/crates/monty-python/pyproject.toml +57 -0
- package/ref-monty/crates/monty-python/python/pydantic_monty/__init__.py +281 -0
- package/ref-monty/crates/monty-python/python/pydantic_monty/_monty.pyi +677 -0
- package/ref-monty/crates/monty-python/python/pydantic_monty/os_access.py +933 -0
- package/ref-monty/crates/monty-python/python/pydantic_monty/py.typed +0 -0
- package/ref-monty/crates/monty-python/src/convert.rs +273 -0
- package/ref-monty/crates/monty-python/src/dataclass.rs +461 -0
- package/ref-monty/crates/monty-python/src/exceptions.rs +557 -0
- package/ref-monty/crates/monty-python/src/external.rs +165 -0
- package/ref-monty/crates/monty-python/src/lib.rs +77 -0
- package/ref-monty/crates/monty-python/src/limits.rs +142 -0
- package/ref-monty/crates/monty-python/src/monty_cls.rs +1650 -0
- package/ref-monty/crates/monty-python/src/repl.rs +470 -0
- package/ref-monty/crates/monty-python/src/serialization.rs +761 -0
- package/ref-monty/crates/monty-python/tests/test_async.py +1201 -0
- package/ref-monty/crates/monty-python/tests/test_basic.py +66 -0
- package/ref-monty/crates/monty-python/tests/test_dataclasses.py +971 -0
- package/ref-monty/crates/monty-python/tests/test_exceptions.py +361 -0
- package/ref-monty/crates/monty-python/tests/test_external.py +367 -0
- package/ref-monty/crates/monty-python/tests/test_inputs.py +126 -0
- package/ref-monty/crates/monty-python/tests/test_limits.py +257 -0
- package/ref-monty/crates/monty-python/tests/test_os_access.py +1286 -0
- package/ref-monty/crates/monty-python/tests/test_os_access_compat.py +731 -0
- package/ref-monty/crates/monty-python/tests/test_os_access_raw.py +483 -0
- package/ref-monty/crates/monty-python/tests/test_os_calls.py +819 -0
- package/ref-monty/crates/monty-python/tests/test_print.py +208 -0
- package/ref-monty/crates/monty-python/tests/test_re.py +170 -0
- package/ref-monty/crates/monty-python/tests/test_readme_examples.py +20 -0
- package/ref-monty/crates/monty-python/tests/test_repl.py +749 -0
- package/ref-monty/crates/monty-python/tests/test_serialize.py +284 -0
- package/ref-monty/crates/monty-python/tests/test_start.py +346 -0
- package/ref-monty/crates/monty-python/tests/test_threading.py +163 -0
- package/ref-monty/crates/monty-python/tests/test_type_check.py +344 -0
- package/ref-monty/crates/monty-python/tests/test_types.py +553 -0
- package/ref-monty/crates/monty-type-checking/Cargo.toml +32 -0
- package/ref-monty/crates/monty-type-checking/src/db.rs +116 -0
- package/ref-monty/crates/monty-type-checking/src/lib.rs +4 -0
- package/ref-monty/crates/monty-type-checking/src/type_check.rs +280 -0
- package/ref-monty/crates/monty-type-checking/tests/bad_types.py +109 -0
- package/ref-monty/crates/monty-type-checking/tests/bad_types_output.txt +21 -0
- package/ref-monty/crates/monty-type-checking/tests/good_types.py +475 -0
- package/ref-monty/crates/monty-type-checking/tests/main.rs +205 -0
- package/ref-monty/crates/monty-type-checking/tests/reveal_types.py +56 -0
- package/ref-monty/crates/monty-type-checking/tests/reveal_types_output.txt +41 -0
- package/ref-monty/crates/monty-typeshed/Cargo.toml +29 -0
- package/ref-monty/crates/monty-typeshed/README.md +11 -0
- package/ref-monty/crates/monty-typeshed/build.rs +101 -0
- package/ref-monty/crates/monty-typeshed/custom/README.md +1 -0
- package/ref-monty/crates/monty-typeshed/custom/asyncio.pyi +138 -0
- package/ref-monty/crates/monty-typeshed/custom/os.pyi +87 -0
- package/ref-monty/crates/monty-typeshed/custom/sys.pyi +33 -0
- package/ref-monty/crates/monty-typeshed/src/lib.rs +56 -0
- package/ref-monty/crates/monty-typeshed/update.py +321 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/source_commit.txt +1 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/stdlib/VERSIONS +20 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/stdlib/_collections_abc.pyi +105 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/stdlib/_typeshed/__init__.pyi +394 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/stdlib/asyncio.pyi +138 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/stdlib/builtins.pyi +1434 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/stdlib/collections/__init__.pyi +527 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/stdlib/collections/abc.pyi +2 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/stdlib/dataclasses.pyi +502 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/stdlib/enum.pyi +376 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/stdlib/math.pyi +149 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/stdlib/os.pyi +87 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/stdlib/pathlib/__init__.pyi +395 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/stdlib/pathlib/types.pyi +8 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/stdlib/re.pyi +337 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/stdlib/sys.pyi +33 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/stdlib/types.pyi +741 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/stdlib/typing.pyi +1217 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/stdlib/typing_extensions.pyi +716 -0
- package/ref-monty/docs/usage-guide.md +117 -0
- package/ref-monty/examples/README.md +3 -0
- package/ref-monty/examples/expense_analysis/README.md +3 -0
- package/ref-monty/examples/expense_analysis/data.py +124 -0
- package/ref-monty/examples/expense_analysis/main.py +115 -0
- package/ref-monty/examples/sql_playground/README.md +20 -0
- package/ref-monty/examples/sql_playground/external_functions.py +129 -0
- package/ref-monty/examples/sql_playground/main.py +81 -0
- package/ref-monty/examples/sql_playground/sandbox_code.py +82 -0
- package/ref-monty/examples/sql_playground/type_stubs.pyi +14 -0
- package/ref-monty/examples/web_scraper/README.md +15 -0
- package/ref-monty/examples/web_scraper/browser.py +56 -0
- package/ref-monty/examples/web_scraper/example_code.py +59 -0
- package/ref-monty/examples/web_scraper/external_functions.py +324 -0
- package/ref-monty/examples/web_scraper/main.py +193 -0
- package/ref-monty/examples/web_scraper/sub_agent.py +79 -0
- package/ref-monty/monty-npm.md +235 -0
- package/ref-monty/pyproject.toml +162 -0
- package/ref-monty/scripts/check_imports.py +91 -0
- package/ref-monty/scripts/codecov_diff.py +412 -0
- package/ref-monty/scripts/complete_tests.py +146 -0
- package/ref-monty/scripts/flamegraph_to_text.py +208 -0
- package/ref-monty/scripts/iter_test_methods.py +540 -0
- package/ref-monty/scripts/run_traceback.py +180 -0
- package/ref-monty/scripts/startup_performance.py +130 -0
- package/ref-monty/uv.lock +1779 -0
- package/tests/test-mcp-browser-use-smoke.sh +28 -56
- package/tests/test-monty-smoke.sh +32 -0
- package/tests/test-resend-smoke.sh +32 -0
|
@@ -44,6 +44,8 @@ describe("adapter-schema", () => {
|
|
|
44
44
|
expect(() => validateAdapterConfig({ adapter: "mcp", adapterConfig: { tool: 1 } })).toThrow(/requires adapterConfig.tool/)
|
|
45
45
|
expect(() => validateAdapterConfig({ adapter: "mcp", adapterConfig: { tool: "t" } })).toThrow(/requires one source/)
|
|
46
46
|
expect(() => validateAdapterConfig({ adapter: "mcp", adapterConfig: { tool: "t", server: "s" } })).not.toThrow()
|
|
47
|
+
expect(() => validateAdapterConfig({ adapter: "mcp", adapterConfig: { tool: "t", server: "s", timeout_ms: 180000 } })).not.toThrow()
|
|
48
|
+
expect(() => validateAdapterConfig({ adapter: "mcp", adapterConfig: { tool: "t", server: "s", timeout_ms: 180001 } })).toThrow(/cannot exceed 180000ms/)
|
|
47
49
|
})
|
|
48
50
|
|
|
49
51
|
test("process adapter validation", () => {
|
package/__tests__/config.test.js
CHANGED
|
@@ -13,7 +13,9 @@ const {
|
|
|
13
13
|
showConfig,
|
|
14
14
|
setMcpServer,
|
|
15
15
|
removeMcpServer,
|
|
16
|
-
listMcpServers
|
|
16
|
+
listMcpServers,
|
|
17
|
+
upsertCommand,
|
|
18
|
+
removeCommandsByNamespace
|
|
17
19
|
} = require("../cli/config")
|
|
18
20
|
const { getInstalledPluginCommands, listInstalledPlugins } = require("../cli/plugins-store")
|
|
19
21
|
|
|
@@ -298,6 +300,46 @@ describe("config", () => {
|
|
|
298
300
|
})
|
|
299
301
|
})
|
|
300
302
|
|
|
303
|
+
describe("command management", () => {
|
|
304
|
+
test("upsertCommand adds and updates local command aliases", async () => {
|
|
305
|
+
fs.existsSync.mockReturnValue(true)
|
|
306
|
+
fs.readFileSync.mockReturnValue(JSON.stringify({
|
|
307
|
+
commands: [
|
|
308
|
+
{ namespace: "a", resource: "b", action: "c", adapter: "http" }
|
|
309
|
+
]
|
|
310
|
+
}))
|
|
311
|
+
|
|
312
|
+
await upsertCommand({
|
|
313
|
+
namespace: "ai",
|
|
314
|
+
resource: "browser",
|
|
315
|
+
action: "probe",
|
|
316
|
+
adapter: "mcp",
|
|
317
|
+
adapterConfig: { server: "browser-use", tool: "navigate" }
|
|
318
|
+
})
|
|
319
|
+
|
|
320
|
+
let lastWrite = JSON.parse(fs.writeFileSync.mock.calls[0][1])
|
|
321
|
+
expect(lastWrite.commands).toEqual(expect.arrayContaining([
|
|
322
|
+
expect.objectContaining({ namespace: "a", resource: "b", action: "c" }),
|
|
323
|
+
expect.objectContaining({ namespace: "ai", resource: "browser", action: "probe", adapter: "mcp" })
|
|
324
|
+
]))
|
|
325
|
+
|
|
326
|
+
fs.readFileSync.mockReturnValue(JSON.stringify(lastWrite))
|
|
327
|
+
fs.writeFileSync.mockClear()
|
|
328
|
+
|
|
329
|
+
await upsertCommand({
|
|
330
|
+
namespace: "ai",
|
|
331
|
+
resource: "browser",
|
|
332
|
+
action: "probe",
|
|
333
|
+
adapter: "mcp",
|
|
334
|
+
description: "updated"
|
|
335
|
+
})
|
|
336
|
+
|
|
337
|
+
lastWrite = JSON.parse(fs.writeFileSync.mock.calls[0][1])
|
|
338
|
+
const updated = lastWrite.commands.find(c => c.namespace === "ai" && c.resource === "browser" && c.action === "probe")
|
|
339
|
+
expect(updated.description).toBe("updated")
|
|
340
|
+
})
|
|
341
|
+
})
|
|
342
|
+
|
|
301
343
|
describe("showConfig", () => {
|
|
302
344
|
test("returns message if no cache", async () => {
|
|
303
345
|
fs.existsSync.mockReturnValue(false)
|
|
@@ -338,5 +380,24 @@ describe("config", () => {
|
|
|
338
380
|
expect(result.mcp_servers).toBe(0)
|
|
339
381
|
expect(result.specs).toBe(0)
|
|
340
382
|
})
|
|
383
|
+
|
|
384
|
+
test("removeCommandsByNamespace removes all matching namespace commands", async () => {
|
|
385
|
+
fs.existsSync.mockReturnValue(true)
|
|
386
|
+
fs.readFileSync.mockReturnValue(JSON.stringify({
|
|
387
|
+
commands: [
|
|
388
|
+
{ namespace: "browseruse", resource: "tool", action: "list-skills" },
|
|
389
|
+
{ namespace: "browseruse", resource: "tool", action: "browser-task" },
|
|
390
|
+
{ namespace: "ai", resource: "text", action: "summarize" }
|
|
391
|
+
]
|
|
392
|
+
}))
|
|
393
|
+
|
|
394
|
+
const removed = await removeCommandsByNamespace("browseruse")
|
|
395
|
+
expect(removed).toBe(2)
|
|
396
|
+
|
|
397
|
+
const lastWrite = JSON.parse(fs.writeFileSync.mock.calls[0][1])
|
|
398
|
+
expect(lastWrite.commands).toEqual([
|
|
399
|
+
{ namespace: "ai", resource: "text", action: "summarize" }
|
|
400
|
+
])
|
|
401
|
+
})
|
|
341
402
|
})
|
|
342
403
|
})
|
|
@@ -5,6 +5,8 @@ describe("help-json", () => {
|
|
|
5
5
|
const data = buildCapabilities({ commands: [] }, false)
|
|
6
6
|
|
|
7
7
|
expect(data.commands.plugins).toBeDefined()
|
|
8
|
+
expect(data.commands.plugins.subcommands).toEqual(expect.arrayContaining(["learn"]))
|
|
9
|
+
expect(data.commands.mcp.subcommands).toEqual(expect.arrayContaining(["tools", "call", "bind", "doctor"]))
|
|
8
10
|
expect(data.commands.sync).toBeUndefined()
|
|
9
11
|
expect(data.flags["--help-json"]).toBeDefined()
|
|
10
12
|
})
|
|
@@ -4,6 +4,11 @@ const EventEmitter = require("events")
|
|
|
4
4
|
|
|
5
5
|
jest.mock("child_process")
|
|
6
6
|
|
|
7
|
+
function frame(obj) {
|
|
8
|
+
const body = JSON.stringify(obj)
|
|
9
|
+
return `Content-Length: ${Buffer.byteLength(body, "utf-8")}\r\n\r\n${body}`
|
|
10
|
+
}
|
|
11
|
+
|
|
7
12
|
describe("mcp adapter", () => {
|
|
8
13
|
beforeEach(() => {
|
|
9
14
|
jest.clearAllMocks()
|
|
@@ -43,6 +48,15 @@ describe("mcp adapter", () => {
|
|
|
43
48
|
})
|
|
44
49
|
|
|
45
50
|
test("resolves stdio command from named server and merges args/env", async () => {
|
|
51
|
+
mockChild.stdin.write = jest.fn((data) => {
|
|
52
|
+
if (String(data).includes('"method":"initialize"')) {
|
|
53
|
+
mockChild.stdout.emit("data", frame({ jsonrpc: "2.0", id: 1, result: { capabilities: {} } }))
|
|
54
|
+
}
|
|
55
|
+
if (String(data).includes('"method":"tools/call"')) {
|
|
56
|
+
mockChild.stdout.emit("data", frame({ jsonrpc: "2.0", id: 2, result: { ok: true } }))
|
|
57
|
+
}
|
|
58
|
+
})
|
|
59
|
+
|
|
46
60
|
const promise = execute(
|
|
47
61
|
{
|
|
48
62
|
adapterConfig: {
|
|
@@ -67,10 +81,6 @@ describe("mcp adapter", () => {
|
|
|
67
81
|
}
|
|
68
82
|
)
|
|
69
83
|
|
|
70
|
-
await Promise.resolve()
|
|
71
|
-
mockChild.stdout.emit("data", '{"ok":true}')
|
|
72
|
-
mockChild.emit("close", 0)
|
|
73
|
-
|
|
74
84
|
await expect(promise).resolves.toEqual({ ok: true })
|
|
75
85
|
expect(spawn).toHaveBeenCalledWith(
|
|
76
86
|
"npx",
|
|
@@ -3,6 +3,7 @@ const { handleMcpRegistryCommand } = require("../cli/mcp-local");
|
|
|
3
3
|
describe("mcp-local", () => {
|
|
4
4
|
let mockOutput, mockOutputHumanTable, mockOutputError;
|
|
5
5
|
let mockSetMcpServer, mockRemoveMcpServer, mockListMcpServers;
|
|
6
|
+
let mockLoadConfig, mockExecuteCommand, mockUpsertCommand, mockDiscoverTools;
|
|
6
7
|
|
|
7
8
|
beforeEach(() => {
|
|
8
9
|
mockOutput = jest.fn();
|
|
@@ -11,6 +12,10 @@ describe("mcp-local", () => {
|
|
|
11
12
|
mockSetMcpServer = jest.fn();
|
|
12
13
|
mockRemoveMcpServer = jest.fn();
|
|
13
14
|
mockListMcpServers = jest.fn();
|
|
15
|
+
mockLoadConfig = jest.fn().mockResolvedValue({ mcp_servers: [] });
|
|
16
|
+
mockExecuteCommand = jest.fn().mockResolvedValue({ ok: true });
|
|
17
|
+
mockUpsertCommand = jest.fn(async (c) => c);
|
|
18
|
+
mockDiscoverTools = jest.fn().mockResolvedValue([]);
|
|
14
19
|
});
|
|
15
20
|
|
|
16
21
|
test("list subcommand", async () => {
|
|
@@ -41,9 +46,163 @@ describe("mcp-local", () => {
|
|
|
41
46
|
});
|
|
42
47
|
|
|
43
48
|
expect(mockOutputHumanTable).toHaveBeenCalled();
|
|
49
|
+
expect(mockOutputHumanTable.mock.calls[0][0][0]).toEqual(
|
|
50
|
+
expect.objectContaining({ transport: "http", source: "u1" }),
|
|
51
|
+
);
|
|
44
52
|
consoleSpy.mockRestore();
|
|
45
53
|
});
|
|
46
54
|
|
|
55
|
+
test("tools subcommand", async () => {
|
|
56
|
+
mockListMcpServers.mockResolvedValue([{ name: "browser-use", command: "npx" }]);
|
|
57
|
+
mockDiscoverTools.mockResolvedValue([{ name: "navigate", description: "Navigate" }]);
|
|
58
|
+
|
|
59
|
+
await handleMcpRegistryCommand({
|
|
60
|
+
positional: ["mcp", "tools"],
|
|
61
|
+
flags: { "mcp-server": "browser-use" },
|
|
62
|
+
output: mockOutput,
|
|
63
|
+
outputError: mockOutputError,
|
|
64
|
+
listMcpServers: mockListMcpServers,
|
|
65
|
+
discoverTools: mockDiscoverTools,
|
|
66
|
+
});
|
|
67
|
+
|
|
68
|
+
expect(mockDiscoverTools).toHaveBeenCalledWith(
|
|
69
|
+
expect.objectContaining({ name: "browser-use" }),
|
|
70
|
+
);
|
|
71
|
+
expect(mockOutput).toHaveBeenCalledWith(
|
|
72
|
+
expect.objectContaining({ discovered: 1 }),
|
|
73
|
+
);
|
|
74
|
+
});
|
|
75
|
+
|
|
76
|
+
test("call subcommand", async () => {
|
|
77
|
+
await handleMcpRegistryCommand({
|
|
78
|
+
positional: ["mcp", "call"],
|
|
79
|
+
flags: {
|
|
80
|
+
"mcp-server": "browser-use",
|
|
81
|
+
tool: "navigate",
|
|
82
|
+
"input-json": '{"url":"https://example.com"}',
|
|
83
|
+
},
|
|
84
|
+
output: mockOutput,
|
|
85
|
+
outputError: mockOutputError,
|
|
86
|
+
loadConfig: mockLoadConfig,
|
|
87
|
+
executeCommand: mockExecuteCommand,
|
|
88
|
+
serverUrl: "http://server",
|
|
89
|
+
});
|
|
90
|
+
|
|
91
|
+
expect(mockExecuteCommand).toHaveBeenCalledWith(
|
|
92
|
+
expect.objectContaining({
|
|
93
|
+
adapter: "mcp",
|
|
94
|
+
adapterConfig: expect.objectContaining({ server: "browser-use", tool: "navigate" }),
|
|
95
|
+
}),
|
|
96
|
+
{ url: "https://example.com" },
|
|
97
|
+
expect.objectContaining({ server: "http://server" }),
|
|
98
|
+
);
|
|
99
|
+
expect(mockOutput).toHaveBeenCalledWith(expect.objectContaining({ ok: true }));
|
|
100
|
+
});
|
|
101
|
+
|
|
102
|
+
test("call subcommand supports timeout", async () => {
|
|
103
|
+
await handleMcpRegistryCommand({
|
|
104
|
+
positional: ["mcp", "call"],
|
|
105
|
+
flags: {
|
|
106
|
+
"mcp-server": "browser-use",
|
|
107
|
+
tool: "navigate",
|
|
108
|
+
"timeout-ms": "180000",
|
|
109
|
+
},
|
|
110
|
+
output: mockOutput,
|
|
111
|
+
outputError: mockOutputError,
|
|
112
|
+
loadConfig: mockLoadConfig,
|
|
113
|
+
executeCommand: mockExecuteCommand,
|
|
114
|
+
serverUrl: "http://server",
|
|
115
|
+
});
|
|
116
|
+
|
|
117
|
+
expect(mockExecuteCommand).toHaveBeenCalledWith(
|
|
118
|
+
expect.objectContaining({
|
|
119
|
+
adapterConfig: expect.objectContaining({ timeout_ms: 180000 }),
|
|
120
|
+
}),
|
|
121
|
+
expect.any(Object),
|
|
122
|
+
expect.any(Object),
|
|
123
|
+
);
|
|
124
|
+
});
|
|
125
|
+
|
|
126
|
+
test("call subcommand rejects oversized timeout", async () => {
|
|
127
|
+
await handleMcpRegistryCommand({
|
|
128
|
+
positional: ["mcp", "call"],
|
|
129
|
+
flags: {
|
|
130
|
+
"mcp-server": "browser-use",
|
|
131
|
+
tool: "navigate",
|
|
132
|
+
"timeout-ms": "180001",
|
|
133
|
+
},
|
|
134
|
+
outputError: mockOutputError,
|
|
135
|
+
executeCommand: mockExecuteCommand,
|
|
136
|
+
});
|
|
137
|
+
|
|
138
|
+
expect(mockOutputError).toHaveBeenCalledWith(expect.objectContaining({ code: 85 }));
|
|
139
|
+
expect(mockExecuteCommand).not.toHaveBeenCalled();
|
|
140
|
+
});
|
|
141
|
+
|
|
142
|
+
test("bind subcommand", async () => {
|
|
143
|
+
await handleMcpRegistryCommand({
|
|
144
|
+
positional: ["mcp", "bind"],
|
|
145
|
+
flags: {
|
|
146
|
+
"mcp-server": "browser-use",
|
|
147
|
+
tool: "navigate",
|
|
148
|
+
as: "ai.browser.probe",
|
|
149
|
+
},
|
|
150
|
+
output: mockOutput,
|
|
151
|
+
outputError: mockOutputError,
|
|
152
|
+
upsertCommand: mockUpsertCommand,
|
|
153
|
+
});
|
|
154
|
+
|
|
155
|
+
expect(mockUpsertCommand).toHaveBeenCalledWith(
|
|
156
|
+
expect.objectContaining({
|
|
157
|
+
namespace: "ai",
|
|
158
|
+
resource: "browser",
|
|
159
|
+
action: "probe",
|
|
160
|
+
adapter: "mcp",
|
|
161
|
+
}),
|
|
162
|
+
);
|
|
163
|
+
expect(mockOutput).toHaveBeenCalledWith(
|
|
164
|
+
expect.objectContaining({ command: "ai.browser.probe" }),
|
|
165
|
+
);
|
|
166
|
+
});
|
|
167
|
+
|
|
168
|
+
test("doctor subcommand", async () => {
|
|
169
|
+
const diagnose = jest.fn().mockResolvedValue({
|
|
170
|
+
server: "browser-use",
|
|
171
|
+
status: "degraded",
|
|
172
|
+
transport: "stdio",
|
|
173
|
+
checks: [{ id: "tools", ok: false, message: "No tools discovered" }],
|
|
174
|
+
issues: ["No tools discovered"],
|
|
175
|
+
tools: [],
|
|
176
|
+
});
|
|
177
|
+
mockListMcpServers.mockResolvedValue([{ name: "browser-use", command: "npx" }]);
|
|
178
|
+
|
|
179
|
+
await handleMcpRegistryCommand({
|
|
180
|
+
positional: ["mcp", "doctor"],
|
|
181
|
+
flags: { "mcp-server": "browser-use" },
|
|
182
|
+
output: mockOutput,
|
|
183
|
+
outputError: mockOutputError,
|
|
184
|
+
listMcpServers: mockListMcpServers,
|
|
185
|
+
diagnoseServer: diagnose,
|
|
186
|
+
discoverTools: mockDiscoverTools,
|
|
187
|
+
});
|
|
188
|
+
|
|
189
|
+
expect(diagnose).toHaveBeenCalledWith(
|
|
190
|
+
expect.objectContaining({ name: "browser-use" }),
|
|
191
|
+
expect.objectContaining({ discoverTools: mockDiscoverTools }),
|
|
192
|
+
);
|
|
193
|
+
expect(mockOutput).toHaveBeenCalledWith(expect.objectContaining({ status: "degraded" }));
|
|
194
|
+
});
|
|
195
|
+
|
|
196
|
+
test("doctor subcommand validation error", async () => {
|
|
197
|
+
await handleMcpRegistryCommand({
|
|
198
|
+
positional: ["mcp", "doctor"],
|
|
199
|
+
flags: {},
|
|
200
|
+
outputError: mockOutputError,
|
|
201
|
+
});
|
|
202
|
+
|
|
203
|
+
expect(mockOutputError).toHaveBeenCalledWith(expect.objectContaining({ code: 85 }));
|
|
204
|
+
});
|
|
205
|
+
|
|
47
206
|
test("add subcommand", async () => {
|
|
48
207
|
await handleMcpRegistryCommand({
|
|
49
208
|
positional: ["mcp", "add", "s1"],
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
const EventEmitter = require("events");
|
|
2
|
+
const { spawn } = require("child_process");
|
|
3
|
+
const {
|
|
4
|
+
shouldUseStdioJsonRpc,
|
|
5
|
+
stdioListToolsJsonRpc,
|
|
6
|
+
stdioCallToolJsonRpc,
|
|
7
|
+
} = require("../cli/mcp-stdio-jsonrpc");
|
|
8
|
+
|
|
9
|
+
jest.mock("child_process");
|
|
10
|
+
|
|
11
|
+
function frame(obj) {
|
|
12
|
+
const body = JSON.stringify(obj);
|
|
13
|
+
return `Content-Length: ${Buffer.byteLength(body, "utf-8")}\r\n\r\n${body}`;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
describe("mcp-stdio-jsonrpc", () => {
|
|
17
|
+
beforeEach(() => {
|
|
18
|
+
jest.clearAllMocks();
|
|
19
|
+
});
|
|
20
|
+
|
|
21
|
+
test("detects mcp-remote args for JSON-RPC mode", () => {
|
|
22
|
+
expect(shouldUseStdioJsonRpc({ args: ["mcp-remote", "https://x"] })).toBe(true);
|
|
23
|
+
expect(shouldUseStdioJsonRpc({ commandArgs: ["mcp-remote"] })).toBe(true);
|
|
24
|
+
expect(shouldUseStdioJsonRpc({ args: ["node"] })).toBe(false);
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
test("lists tools via stdio JSON-RPC", async () => {
|
|
28
|
+
const child = new EventEmitter();
|
|
29
|
+
child.stdout = new EventEmitter();
|
|
30
|
+
child.stderr = new EventEmitter();
|
|
31
|
+
child.stdin = {
|
|
32
|
+
write: jest.fn((data) => {
|
|
33
|
+
if (String(data).includes('"method":"initialize"')) {
|
|
34
|
+
child.stdout.emit(
|
|
35
|
+
"data",
|
|
36
|
+
Buffer.from(frame({ jsonrpc: "2.0", id: 1, result: { capabilities: {} } })),
|
|
37
|
+
);
|
|
38
|
+
}
|
|
39
|
+
if (String(data).includes('"method":"tools/list"')) {
|
|
40
|
+
child.stdout.emit(
|
|
41
|
+
"data",
|
|
42
|
+
Buffer.from(
|
|
43
|
+
frame({
|
|
44
|
+
jsonrpc: "2.0",
|
|
45
|
+
id: 2,
|
|
46
|
+
result: { tools: [{ name: "navigate", description: "Go" }] },
|
|
47
|
+
}),
|
|
48
|
+
),
|
|
49
|
+
);
|
|
50
|
+
}
|
|
51
|
+
}),
|
|
52
|
+
end: jest.fn(),
|
|
53
|
+
};
|
|
54
|
+
child.kill = jest.fn();
|
|
55
|
+
spawn.mockReturnValue(child);
|
|
56
|
+
|
|
57
|
+
const out = await stdioListToolsJsonRpc({
|
|
58
|
+
command: "npx",
|
|
59
|
+
args: ["mcp-remote", "https://api.browser-use.com/mcp"],
|
|
60
|
+
timeoutMs: 2000,
|
|
61
|
+
});
|
|
62
|
+
expect(out.tools).toHaveLength(1);
|
|
63
|
+
expect(out.tools[0].name).toBe("navigate");
|
|
64
|
+
});
|
|
65
|
+
|
|
66
|
+
test("calls tool via stdio JSON-RPC", async () => {
|
|
67
|
+
const child = new EventEmitter();
|
|
68
|
+
child.stdout = new EventEmitter();
|
|
69
|
+
child.stderr = new EventEmitter();
|
|
70
|
+
child.stdin = {
|
|
71
|
+
write: jest.fn((data) => {
|
|
72
|
+
if (String(data).includes('"method":"initialize"')) {
|
|
73
|
+
child.stdout.emit(
|
|
74
|
+
"data",
|
|
75
|
+
Buffer.from(frame({ jsonrpc: "2.0", id: 1, result: { capabilities: {} } })),
|
|
76
|
+
);
|
|
77
|
+
}
|
|
78
|
+
if (String(data).includes('"method":"tools/call"')) {
|
|
79
|
+
child.stdout.emit(
|
|
80
|
+
"data",
|
|
81
|
+
Buffer.from(
|
|
82
|
+
frame({
|
|
83
|
+
jsonrpc: "2.0",
|
|
84
|
+
id: 2,
|
|
85
|
+
result: { content: [{ type: "text", text: "ok" }] },
|
|
86
|
+
}),
|
|
87
|
+
),
|
|
88
|
+
);
|
|
89
|
+
}
|
|
90
|
+
}),
|
|
91
|
+
end: jest.fn(),
|
|
92
|
+
};
|
|
93
|
+
child.kill = jest.fn();
|
|
94
|
+
spawn.mockReturnValue(child);
|
|
95
|
+
|
|
96
|
+
const out = await stdioCallToolJsonRpc({
|
|
97
|
+
command: "npx",
|
|
98
|
+
args: ["mcp-remote", "https://api.browser-use.com/mcp"],
|
|
99
|
+
timeoutMs: 2000,
|
|
100
|
+
tool: "navigate",
|
|
101
|
+
input: { url: "https://example.com" },
|
|
102
|
+
});
|
|
103
|
+
expect(out).toEqual({ content: [{ type: "text", text: "ok" }] });
|
|
104
|
+
});
|
|
105
|
+
});
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
const fs = require("fs")
|
|
2
|
+
const os = require("os")
|
|
3
|
+
const path = require("path")
|
|
4
|
+
const { execSync } = require("child_process")
|
|
5
|
+
|
|
6
|
+
const CLI = path.join(__dirname, "..", "cli", "supercli.js")
|
|
7
|
+
|
|
8
|
+
function runNoServer(args, options = {}) {
|
|
9
|
+
try {
|
|
10
|
+
const env = { ...process.env }
|
|
11
|
+
delete env.SUPERCLI_SERVER
|
|
12
|
+
const out = execSync(`node ${CLI} ${args}`, {
|
|
13
|
+
encoding: "utf-8",
|
|
14
|
+
timeout: 15000,
|
|
15
|
+
env: { ...env, ...(options.env || {}) }
|
|
16
|
+
})
|
|
17
|
+
return { ok: true, output: out.trim(), code: 0 }
|
|
18
|
+
} catch (err) {
|
|
19
|
+
return {
|
|
20
|
+
ok: false,
|
|
21
|
+
output: (err.stdout || "").trim(),
|
|
22
|
+
stderr: (err.stderr || "").trim(),
|
|
23
|
+
code: err.status
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
function writeFakeCurlBinary(dir) {
|
|
29
|
+
const bin = path.join(dir, "curl")
|
|
30
|
+
fs.writeFileSync(bin, [
|
|
31
|
+
"#!/usr/bin/env node",
|
|
32
|
+
"const args = process.argv.slice(2);",
|
|
33
|
+
"const url = args[args.length - 1] || '';",
|
|
34
|
+
"if (args.includes('--version')) { console.log('curl 8.0.0-test'); process.exit(0); }",
|
|
35
|
+
"if (url.endsWith('/CLAUDE.md')) { console.log('---\\nskill_name: monty-sandbox\\n---\\n# Monty Sandbox'); process.exit(0); }",
|
|
36
|
+
"if (url.endsWith('/README.md')) { console.log('# Monty\\n\\nTest readme.'); process.exit(0); }",
|
|
37
|
+
"if (url.endsWith('/docs/usage-guide.md')) { console.log('# Monty Usage\\n\\nTest usage guide.'); process.exit(0); }",
|
|
38
|
+
"process.exit(22);"
|
|
39
|
+
].join("\n"), "utf-8")
|
|
40
|
+
fs.chmodSync(bin, 0o755)
|
|
41
|
+
return bin
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
describe("monty hybrid plugin", () => {
|
|
45
|
+
const fakeBinDir = fs.mkdtempSync(path.join(os.tmpdir(), "dcli-monty-bin-"))
|
|
46
|
+
const tempHome = fs.mkdtempSync(path.join(os.tmpdir(), "dcli-home-monty-"))
|
|
47
|
+
const fakeUserHome = fs.mkdtempSync(path.join(os.tmpdir(), "dcli-user-home-monty-"))
|
|
48
|
+
writeFakeCurlBinary(fakeBinDir)
|
|
49
|
+
|
|
50
|
+
const env = {
|
|
51
|
+
...process.env,
|
|
52
|
+
PATH: `${fakeBinDir}:${process.env.PATH || ""}`,
|
|
53
|
+
SUPERCLI_HOME: tempHome,
|
|
54
|
+
HOME: fakeUserHome
|
|
55
|
+
}
|
|
56
|
+
let removed = false
|
|
57
|
+
|
|
58
|
+
beforeAll(() => {
|
|
59
|
+
// Install the plugin
|
|
60
|
+
const install = runNoServer("plugins install ./plugins/monty --on-conflict replace --json", { env })
|
|
61
|
+
if (!install.ok) {
|
|
62
|
+
console.error("Install failed:", install.output, install.stderr)
|
|
63
|
+
}
|
|
64
|
+
expect(install.ok).toBe(true)
|
|
65
|
+
})
|
|
66
|
+
|
|
67
|
+
afterAll(() => {
|
|
68
|
+
if (!removed) runNoServer("plugins remove monty --json", { env })
|
|
69
|
+
fs.rmSync(fakeBinDir, { recursive: true, force: true })
|
|
70
|
+
fs.rmSync(tempHome, { recursive: true, force: true })
|
|
71
|
+
fs.rmSync(fakeUserHome, { recursive: true, force: true })
|
|
72
|
+
})
|
|
73
|
+
|
|
74
|
+
test("indexes monty skills provider", () => {
|
|
75
|
+
const list = runNoServer("skills list --catalog --provider monty --json", { env })
|
|
76
|
+
expect(list.ok).toBe(true)
|
|
77
|
+
const listData = JSON.parse(list.output)
|
|
78
|
+
expect(listData.skills.some(skill => skill.id === "monty:root.skill")).toBe(true)
|
|
79
|
+
expect(listData.skills.some(skill => skill.id === "monty:root.readme")).toBe(true)
|
|
80
|
+
expect(listData.skills.some(skill => skill.id === "monty:root.usage")).toBe(true)
|
|
81
|
+
})
|
|
82
|
+
|
|
83
|
+
test("fetches indexed remote skill markdown", () => {
|
|
84
|
+
const skill = runNoServer("skills get monty:root.skill", { env })
|
|
85
|
+
expect(skill.ok).toBe(true)
|
|
86
|
+
expect(skill.output).toContain("Monty Sandbox")
|
|
87
|
+
})
|
|
88
|
+
|
|
89
|
+
test("throws controlled error when @pydantic/monty is missing", () => {
|
|
90
|
+
// Force dependency missing error via env var
|
|
91
|
+
const r = runNoServer("monty python run --code \"1 + 1\" --json", {
|
|
92
|
+
env: { ...env, MOCK_MISSING_MONTY: "1" }
|
|
93
|
+
})
|
|
94
|
+
|
|
95
|
+
expect(r.ok).toBe(false)
|
|
96
|
+
const data = JSON.parse(r.output || r.stderr)
|
|
97
|
+
|
|
98
|
+
expect(data.error.message).toContain("@pydantic/monty not found")
|
|
99
|
+
expect(data.error.suggestions).toContain("Run: supercli monty cli setup")
|
|
100
|
+
})
|
|
101
|
+
|
|
102
|
+
test("doctor reports node and npm dependencies as healthy", () => {
|
|
103
|
+
const r = runNoServer("plugins doctor monty --json", { env })
|
|
104
|
+
expect(r.ok).toBe(true)
|
|
105
|
+
const data = JSON.parse(r.output)
|
|
106
|
+
expect(data.ok).toBe(true)
|
|
107
|
+
expect(data.checks.some(c => c.binary === "node" && c.ok === true)).toBe(true)
|
|
108
|
+
expect(data.checks.some(c => c.binary === "npm" && c.ok === true)).toBe(true)
|
|
109
|
+
})
|
|
110
|
+
|
|
111
|
+
test("removal cleans up the skills provider", () => {
|
|
112
|
+
const remove = runNoServer("plugins remove monty --json", { env })
|
|
113
|
+
expect(remove.ok).toBe(true)
|
|
114
|
+
removed = true
|
|
115
|
+
|
|
116
|
+
const list = runNoServer("skills list --catalog --provider monty --json", { env })
|
|
117
|
+
expect(list.ok).toBe(true)
|
|
118
|
+
const listData = JSON.parse(list.output)
|
|
119
|
+
expect(listData.skills).toEqual([])
|
|
120
|
+
})
|
|
121
|
+
})
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
const { removeProvider, syncCatalog } = require("../cli/skills-catalog")
|
|
2
|
+
const { removeCommandsByNamespace } = require("../cli/config")
|
|
3
|
+
const { run } = require("../plugins/browser-use/scripts/post-uninstall")
|
|
4
|
+
|
|
5
|
+
jest.mock("../cli/skills-catalog")
|
|
6
|
+
jest.mock("../cli/config")
|
|
7
|
+
|
|
8
|
+
describe("plugin-browser-use post-uninstall", () => {
|
|
9
|
+
beforeEach(() => {
|
|
10
|
+
jest.clearAllMocks()
|
|
11
|
+
removeProvider.mockReturnValue(true)
|
|
12
|
+
removeCommandsByNamespace.mockResolvedValue(6)
|
|
13
|
+
syncCatalog.mockReturnValue({ skills: [1, 2] })
|
|
14
|
+
})
|
|
15
|
+
|
|
16
|
+
test("removes provider and browseruse commands", async () => {
|
|
17
|
+
const result = await run()
|
|
18
|
+
expect(removeCommandsByNamespace).toHaveBeenCalledWith("browseruse")
|
|
19
|
+
expect(removeProvider).toHaveBeenCalledWith("browser-use")
|
|
20
|
+
expect(result.removed_commands).toBe(6)
|
|
21
|
+
expect(result.removed_provider).toBe(true)
|
|
22
|
+
})
|
|
23
|
+
})
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
const { addProvider, syncCatalog } = require("../cli/skills-catalog")
|
|
2
|
+
const { setMcpServer, listMcpServers, upsertCommand } = require("../cli/config")
|
|
3
|
+
const { discoverMcpTools } = require("../cli/mcp-discovery")
|
|
4
|
+
const {
|
|
5
|
+
run,
|
|
6
|
+
actionFromToolName,
|
|
7
|
+
buildToolCommand,
|
|
8
|
+
KNOWN_TOOLS,
|
|
9
|
+
} = require("../plugins/browser-use/scripts/post-install")
|
|
10
|
+
|
|
11
|
+
jest.mock("../cli/skills-catalog")
|
|
12
|
+
jest.mock("../cli/config")
|
|
13
|
+
jest.mock("../cli/mcp-discovery")
|
|
14
|
+
|
|
15
|
+
describe("plugin-browser-use", () => {
|
|
16
|
+
beforeEach(() => {
|
|
17
|
+
jest.clearAllMocks()
|
|
18
|
+
listMcpServers.mockResolvedValue([])
|
|
19
|
+
setMcpServer.mockResolvedValue({})
|
|
20
|
+
upsertCommand.mockResolvedValue({})
|
|
21
|
+
syncCatalog.mockReturnValue({ skills: [1, 2, 3] })
|
|
22
|
+
})
|
|
23
|
+
|
|
24
|
+
test("actionFromToolName normalizes name", () => {
|
|
25
|
+
expect(actionFromToolName("list_skills")).toBe("list-skills")
|
|
26
|
+
expect(actionFromToolName("Browser Task")).toBe("browser-task")
|
|
27
|
+
})
|
|
28
|
+
|
|
29
|
+
test("buildToolCommand builds MCP command", () => {
|
|
30
|
+
const cmd = buildToolCommand("list_skills")
|
|
31
|
+
expect(cmd.namespace).toBe("browseruse")
|
|
32
|
+
expect(cmd.resource).toBe("tool")
|
|
33
|
+
expect(cmd.action).toBe("list-skills")
|
|
34
|
+
expect(cmd.adapter).toBe("mcp")
|
|
35
|
+
expect(cmd.adapterConfig.tool).toBe("list_skills")
|
|
36
|
+
})
|
|
37
|
+
|
|
38
|
+
test("run registers server, binds discovered tools, and adds local skill provider", async () => {
|
|
39
|
+
discoverMcpTools.mockResolvedValue([
|
|
40
|
+
{ name: "list_skills" },
|
|
41
|
+
{ name: "browser_task" },
|
|
42
|
+
])
|
|
43
|
+
|
|
44
|
+
const result = await run()
|
|
45
|
+
|
|
46
|
+
expect(setMcpServer).toHaveBeenCalledWith("browser-use", expect.objectContaining({ command: "npx" }))
|
|
47
|
+
expect(upsertCommand).toHaveBeenCalledTimes(2)
|
|
48
|
+
expect(addProvider).toHaveBeenCalledWith(expect.objectContaining({
|
|
49
|
+
name: "browser-use",
|
|
50
|
+
type: "local_fs",
|
|
51
|
+
roots: expect.any(Array),
|
|
52
|
+
}))
|
|
53
|
+
expect(result.discovered_tools).toBe(2)
|
|
54
|
+
expect(result.bound_commands).toBe(2)
|
|
55
|
+
})
|
|
56
|
+
|
|
57
|
+
test("run uses fallback tools when discovery fails", async () => {
|
|
58
|
+
discoverMcpTools.mockRejectedValue(new Error("network"))
|
|
59
|
+
|
|
60
|
+
const result = await run()
|
|
61
|
+
|
|
62
|
+
expect(result.discovered_tools).toBe(KNOWN_TOOLS.length)
|
|
63
|
+
expect(result.bound_commands).toBe(KNOWN_TOOLS.length)
|
|
64
|
+
expect(result.warnings.length).toBeGreaterThan(0)
|
|
65
|
+
expect(upsertCommand).toHaveBeenCalledTimes(KNOWN_TOOLS.length)
|
|
66
|
+
})
|
|
67
|
+
|
|
68
|
+
test("run does not overwrite existing MCP server", async () => {
|
|
69
|
+
listMcpServers.mockResolvedValue([{ name: "browser-use", command: "npx", args: ["x"] }])
|
|
70
|
+
discoverMcpTools.mockResolvedValue([{ name: "list_skills" }])
|
|
71
|
+
|
|
72
|
+
const result = await run()
|
|
73
|
+
|
|
74
|
+
expect(setMcpServer).not.toHaveBeenCalled()
|
|
75
|
+
expect(result.server_created).toBe(false)
|
|
76
|
+
})
|
|
77
|
+
})
|