blob: 742d5514a183aaadfc9e0e1ed4956838a487fbf1 [file] [log] [blame]
// Copyright 2021 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:cocoon_service/src/request_handlers/create_branch.dart';
import 'package:cocoon_service/src/request_handling/request_handler.dart';
import 'package:cocoon_service/src/service/branch_service.dart';
import 'package:mockito/mockito.dart';
import 'package:test/test.dart';
import '../src/datastore/fake_config.dart';
import '../src/request_handling/fake_authentication.dart';
import '../src/request_handling/fake_http.dart';
import '../src/request_handling/request_handler_tester.dart';
import '../src/utilities/mocks.dart';
void main() {
group(CreateBranch, () {
test('runs', () async {
final RequestHandlerTester tester = RequestHandlerTester();
tester.request = FakeHttpRequest(
queryParametersValue: <String, String>{
CreateBranch.branchParam: 'flutter-3.7-candidate.1',
},
);
final BranchService branchService = MockBranchService();
final RequestHandler handler = CreateBranch(
branchService: branchService,
config: FakeConfig(),
authenticationProvider: FakeAuthenticationProvider(),
);
await tester.get(handler);
verify(branchService.branchFlutterRecipes('flutter-3.7-candidate.1'));
});
});
}