blob: 4489f79b8945ba1be6e1c9be52271efc8848c819 [file] [log] [blame]
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
// for details. 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:shelf_test_handler/shelf_test_handler.dart';
import 'package:test/test.dart';
import '../descriptor.dart' as d;
import '../test_pub.dart';
void main() {
test('with an existing credentials.json, deletes it.', () async {
var server = await ShelfTestServer.create();
await d
.credentialsFile(server, 'access token',
refreshToken: 'refresh token',
expiration: DateTime.now().add(Duration(hours: 1)))
.create();
await runPub(
args: ['logout'],
output: contains('Logging out of pub.dartlang.org.'),
exitCode: 0);
await d.dir(cachePath, [d.nothing('credentials.json')]).validate();
});
test('with no existing credentials.json, notifies.', () async {
await d.dir(cachePath, [d.nothing('credentials.json')]).create();
await runPub(
args: ['logout'],
output: contains('No existing credentials file'),
exitCode: 0);
await d.dir(cachePath, [d.nothing('credentials.json')]).validate();
});
}