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

feat(shorebird_cli): add forEachRef to Git #1062

Merged
merged 2 commits into from
Aug 8, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions packages/shorebird_cli/lib/src/git.dart
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,29 @@ class Git {
}
}

/// List all branches in the git repository located at [directory] that match
/// the [pattern].
Future<String> listBranches({
required String directory,
required String pattern,
}) async {
final arguments = ['branch', '--all', '--list', pattern];
felangel marked this conversation as resolved.
Show resolved Hide resolved
final result = await process.run(
executable,
arguments,
workingDirectory: directory,
);
if (result.exitCode != 0) {
throw ProcessException(
executable,
arguments,
'${result.stderr}',
result.exitCode,
);
}
return '${result.stdout}'.trim();
}

/// Prunes stale remote branches from the repository at [directory]
/// associated with [name].
Future<void> remotePrune({
Expand Down
39 changes: 39 additions & 0 deletions packages/shorebird_cli/test/src/git_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,45 @@ void main() {
});
});

group('listBranches', () {
const directory = 'repository';
const pattern = 'pattern';
const output = '''
* main
stable
remotes/origin/HEAD -> origin/main''';
test('executes correct command', () async {
when(() => processResult.stdout).thenReturn(output);
await expectLater(
runWithOverrides(
() => git.listBranches(pattern: pattern, directory: directory),
),
completion(equals(output)),
);
verify(
() => process.run(
'git',
['branch', '--all', '--list', pattern],
workingDirectory: directory,
),
).called(1);
});

test('throws ProcessException if process exits with error', () async {
const error = 'oops';
when(() => processResult.exitCode).thenReturn(ExitCode.software.code);
when(() => processResult.stderr).thenReturn(error);
expect(
() => runWithOverrides(
() => git.listBranches(pattern: pattern, directory: directory),
),
throwsA(
isA<ProcessException>().having((e) => e.message, 'message', error),
),
);
});
});

group('remotePrune', () {
const directory = './output';
const name = 'origin';
Expand Down