// Copyright 2014 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 'dart:convert'; import 'dart:io'; import 'package:file/file.dart'; import 'package:file/memory.dart'; import 'package:http/http.dart'; import 'package:http/testing.dart'; import 'package:flutter_devicelab/framework/cocoon.dart'; import 'package:flutter_devicelab/framework/task_result.dart'; import 'common.dart'; void main() { ProcessResult _processResult; ProcessResult runSyncStub(String executable, List args, {Map environment, bool includeParentEnvironment, bool runInShell, Encoding stderrEncoding, Encoding stdoutEncoding, String workingDirectory}) => _processResult; // Expected test values. const String commitBranch = 'flutter-1.23-candidate.18'; const String commitSha = 'a4952838bf288a81d8ea11edfd4b4cd649fa94cc'; const String serviceAccountTokenPath = 'test_account_file'; const String serviceAccountToken = 'test_token'; group('Cocoon', () { Client mockClient; Cocoon cocoon; FileSystem fs; setUp(() { fs = MemoryFileSystem(); mockClient = MockClient((Request request) async => Response('{}', 200)); final File serviceAccountFile = fs.file(serviceAccountTokenPath)..createSync(); serviceAccountFile.writeAsStringSync(serviceAccountToken); }); test('returns expected commit branch', () { _processResult = ProcessResult(1, 0, commitBranch, ''); cocoon = Cocoon( serviceAccountTokenPath: serviceAccountTokenPath, filesystem: fs, httpClient: mockClient, processRunSync: runSyncStub, ); expect(cocoon.commitBranch, commitBranch); }); test('returns expected commit sha', () { _processResult = ProcessResult(1, 0, commitSha, ''); cocoon = Cocoon( serviceAccountTokenPath: serviceAccountTokenPath, filesystem: fs, httpClient: mockClient, processRunSync: runSyncStub, ); expect(cocoon.commitSha, commitSha); }); test('throws exception on git cli errors', () { _processResult = ProcessResult(1, 1, '', ''); cocoon = Cocoon( serviceAccountTokenPath: serviceAccountTokenPath, filesystem: fs, httpClient: mockClient, processRunSync: runSyncStub, ); expect(() => cocoon.commitBranch, throwsA(isA())); expect(() => cocoon.commitSha, throwsA(isA())); }); test('sends expected request from successful task', () async { mockClient = MockClient((Request request) async => Response('{}', 200)); cocoon = Cocoon( serviceAccountTokenPath: serviceAccountTokenPath, filesystem: fs, httpClient: mockClient, ); final TaskResult result = TaskResult.success({}); // This should not throw an error. await cocoon.sendTaskResult(builderName: 'builderAbc', result: result); }); test('throws client exception on non-200 responses', () async { mockClient = MockClient((Request request) async => Response('', 500)); cocoon = Cocoon( serviceAccountTokenPath: serviceAccountTokenPath, filesystem: fs, httpClient: mockClient, ); final TaskResult result = TaskResult.success({}); expect(() => cocoon.sendTaskResult(builderName: 'builderAbc', result: result), throwsA(isA())); }); }); group('AuthenticatedCocoonClient', () { FileSystem fs; setUp(() { fs = MemoryFileSystem(); final File serviceAccountFile = fs.file(serviceAccountTokenPath)..createSync(); serviceAccountFile.writeAsStringSync(serviceAccountToken); }); test('reads token from service account file', () { final AuthenticatedCocoonClient client = AuthenticatedCocoonClient(serviceAccountTokenPath, filesystem: fs); expect(client.serviceAccountToken, serviceAccountToken); }); test('reads token from service account file with whitespace', () { final File serviceAccountFile = fs.file(serviceAccountTokenPath)..createSync(); serviceAccountFile.writeAsStringSync(serviceAccountToken + ' \n'); final AuthenticatedCocoonClient client = AuthenticatedCocoonClient(serviceAccountTokenPath, filesystem: fs); expect(client.serviceAccountToken, serviceAccountToken); }); test('throws error when service account file not found', () { final AuthenticatedCocoonClient client = AuthenticatedCocoonClient('idontexist', filesystem: fs); expect(() => client.serviceAccountToken, throwsA(isA())); }); }); }