-
Notifications
You must be signed in to change notification settings - Fork 500
feat(cli)!: refactor factory/CLI to be more testable #725
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
Changes from all commits
e18bde7
aaf3838
5aea3fa
b897382
9c192d6
601c16d
04c379a
4664f39
197d8e5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,73 @@ | ||
| // Copyright 2019 Google LLC | ||
| // | ||
| // Licensed under the Apache License, Version 2.0 (the "License"); | ||
| // you may not use this file except in compliance with the License. | ||
| // You may obtain a copy of the License at | ||
| // | ||
| // http://www.apache.org/licenses/LICENSE-2.0 | ||
| // | ||
| // Unless required by applicable law or agreed to in writing, software | ||
| // distributed under the License is distributed on an "AS IS" BASIS, | ||
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| // See the License for the specific language governing permissions and | ||
| // limitations under the License. | ||
|
|
||
| // Factory shared by GitHub Action and CLI for creating Release PRs | ||
| // and GitHub Releases: | ||
|
|
||
| import {ReleasePR, ReleasePROptions} from './release-pr'; | ||
| import {RubyReleasePROptions} from './releasers/ruby'; | ||
| import { | ||
| GitHubReleaseOptions, | ||
| GitHubRelease, | ||
| ReleaseResponse, | ||
| } from './github-release'; | ||
| import {getReleasers} from './releasers'; | ||
|
|
||
| function runCommand( | ||
| command: string, | ||
| options: GitHubReleaseOptions | ReleasePROptions | ||
| ): Promise<number | undefined | ReleaseResponse> { | ||
| if (isGitHubRelease(command, options)) { | ||
| return factory.run(githubRelease(options)); | ||
| } else { | ||
| return factory.run(releasePR(options)); | ||
| } | ||
| } | ||
|
|
||
| function isGitHubRelease( | ||
| command: string, | ||
| options: GitHubReleaseOptions | ReleasePROptions | ||
| ): options is GitHubReleaseOptions { | ||
| return command === 'github-release' && typeof options === 'object'; | ||
| } | ||
|
|
||
| function run(runnable: ReleasePR | GitHubRelease) { | ||
| return runnable.run(); | ||
| } | ||
|
|
||
| function githubRelease(options: GitHubReleaseOptions): GitHubRelease { | ||
| return new GitHubRelease(options); | ||
| } | ||
|
|
||
| function releasePR(options: ReleasePROptions): ReleasePR { | ||
| const releaseOptions: ReleasePROptions | RubyReleasePROptions = options; | ||
| return new (factory.releasePRClass(options.releaseType))(releaseOptions); | ||
| } | ||
|
|
||
| export function releasePRClass(releaseType: string): typeof ReleasePR { | ||
bcoe marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| const releasers = getReleasers(); | ||
| const releaser = releasers[releaseType]; | ||
| if (!releaser) { | ||
| throw Error('unknown release type'); | ||
| } | ||
| return releaser; | ||
| } | ||
|
|
||
| export const factory = { | ||
| githubRelease, | ||
| releasePR, | ||
| releasePRClass, | ||
| run, | ||
| runCommand, | ||
| }; | ||
|
Comment on lines
+67
to
+73
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I like this common factory. nifty how you collected them together like this for a single entry point.
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's maybe note the most "TypeScripty" looking code, but it's an approach I learned from working on Node: https://github.com/nodejs/node/blob/master/lib/fs.js#L2058 I've found it makes it really easy to mock the methods, vs., static methods. |
||
Uh oh!
There was an error while loading. Please reload this page.