Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor command structure #253

Merged
merged 1 commit into from
Apr 2, 2024
Merged

Refactor command structure #253

merged 1 commit into from
Apr 2, 2024

Conversation

deathaxe
Copy link
Member

@deathaxe deathaxe commented Apr 2, 2024

This commit mainly intents to provide a single unit_testing command, which adapts its behavior based on passed arguments.

  • "package" learned to resolve $package_name to active view's package.
  • "pattern" learned to resolve $file_name to active view's filename.

As a result the following obsolete commands are replaced:

  • unit_testing_current_package => unit_testing(package="$package_name", coverage=False)

  • unit_testing_current_package_coverage => unit_testing(package="$package_name", coverage=True)

  • unit_testing_current_file => unit_testing(package="$package_name", pattern="$file_name", coverage=False)

  • unit_testing_current_file_coverage => unit_testing(package="$package_name", pattern="$file_name", coverage=True)

The new command integrates better with ST build systems, which rely on variables such as $file_name.

 {
     "target": "unit_testing",
     "package": "$package_name",
     "pattern": "$file_name",
     "coverage": false

     // all known settings from unittesting.json are valid within build systems.
}

It also significantly reduces required commands to forward tests to python 3.3 and does so as early as possible, reducing redundant function and API calls.

A BaseUnittestingCommand window command handles shared functionality across unit tests, syntax tests and color scheme tests. A WindowCommand is chosen, to replace sublime.active_window() API calls across methods by self.window, to prevent unwanted side effects as unit tests may create and focus new windows at any time.

The JsonFile is replaced by more use-case specific implementations as it is only used to load unittesting.json or schedule.json, which both have some unique requirements.

Main functionality or test run implementation is however unchanged.

@deathaxe deathaxe force-pushed the feat/refactor-commands branch 2 times, most recently from 9b661ec to b11d9c4 Compare April 2, 2024 17:25
This commit mainly intents to provide a single `unit_testing` command,
which adapts its behavior based on passed arguments.

- `"package"` learned to resolve `$package_name` to active view's package.
- `"pattern"` learned to resolve `$file_name` to active view's filename.

As a result the following obsolete commands are replaced:

- unit_testing_current_package
  => unit_testing(package="$package_name", coverage=False)

- unit_testing_current_package_coverage
  => unit_testing(package="$package_name", coverage=True)

- unit_testing_current_file
  => unit_testing(package="$package_name", pattern="$file_name", coverage=False)

- unit_testing_current_file_coverage
  => unit_testing(package="$package_name", pattern="$file_name", coverage=True)

The new command integrates better with ST build systems, which rely on
variables such as `$file_name`.

```json
 {
     "target": "unit_testing",
     "package": "$package_name",
     "pattern": "$file_name",
     "coverage": False

     // all known settings from unittesting.json are valid within build systems.
}
```

It also significantly reduces required commands to forward tests to python 3.3
and does so as early as possible, reducing redundant function and API calls.

A `BaseUnittestingCommand` window command handles shared functionality across
unit tests, syntax tests and color scheme tests. A WindowCommand is chosen,
to replace `sublime.active_window()` API calls across methods by `self.window`,
to prevent unwanted side effects as unit tests may create and focus new windows
at any time.

The `JsonFile` is replaced by more use-case specific implementations as it is
only used to load unittesting.json or schedule.json, which both have some unique
requirements.

Main functionality or test run implementation is however unchanged.
@deathaxe deathaxe force-pushed the feat/refactor-commands branch from b11d9c4 to 6b4ebe9 Compare April 2, 2024 17:34
@deathaxe deathaxe merged commit d7afe37 into master Apr 2, 2024
15 checks passed
@deathaxe deathaxe deleted the feat/refactor-commands branch April 2, 2024 17:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant