generated from int128/typescript-actions-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 6
feat(get-service-versions) Add success-if-not-found parameter to return empty list instead of raising error #1815
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
Open
kyontan
wants to merge
1
commit into
main
Choose a base branch
from
kyontan/return-empty
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,26 @@ | ||
import * as os from 'os' | ||
import * as path from 'path' | ||
import { promises as fs } from 'fs' | ||
import { getServiceVersions } from '../src/run.js' | ||
import { listApplicationFiles, readApplication } from '../src/application.js' | ||
|
||
const createEmptyDirectory = async () => await fs.mkdtemp(path.join(os.tmpdir(), 'bootstrap-pull-request-')) | ||
|
||
describe('getServiceVersions', () => { | ||
it('returnes empty list if successIfNotFound', async () => { | ||
const result = await getServiceVersions({ | ||
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. ユニットテストはローカルで実行するので、実行環境に依存するコマンドを実行するとテスト結果が不安定になります。 |
||
overlay: 'overlay', | ||
namespace: 'namespace', | ||
sourceRepository: 'sourceRepository', | ||
destinationRepository: 'destinationRepository', | ||
destinationRepositoryToken: 'destinationRepositoryToken', | ||
successIfNotFound: true, | ||
}) | ||
|
||
expect(result).toStrictEqual([]) | ||
}) | ||
}) | ||
|
||
describe('listApplicationFiles', () => { | ||
it('lists up the application files, not other files', async () => { | ||
const namespaceDirectory = await createEmptyDirectory() | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
git コマンドの失敗以外の例外もキャッチしてしまうので、下記の exec からステータスコードを受け取ってチェックする方がよいと思います。
monorepo-deploy-actions/get-service-versions/src/git.ts
Line 32 in 491b74b