blob: 9e2e6bf9906857d4e5449db7c02c5617aa31d050 [file] [log] [blame]
// Copyright (c) 2024, 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 'dart:convert';
import 'dart:io';
import 'package:path/path.dart' as p;
import 'package:pub/src/exit_codes.dart';
import 'package:shelf/shelf.dart';
import 'package:test/test.dart';
import '../descriptor.dart' as d;
import '../test_pub.dart';
import 'utils.dart';
void main() {
test('Can publish into and from archive', () async {
final server = await servePackages();
await d.validPackage().create();
await d.credentialsFile(server, 'access-token').create();
await runPub(
args: ['lish', '--to-archive', p.join('..', 'archive.tar.gz')],
output: contains(
'Wrote package archive at ${p.join('..', 'archive.tar.gz')}',
),
);
expect(File(d.path('archive.tar.gz')).existsSync(), isTrue);
server.expect('GET', '/create', (request) {
return Response.ok(
jsonEncode({
'success': {'message': 'Package test_pkg 1.0.0 uploaded!'},
}),
);
});
final pub = await startPublish(
server,
args: ['--from-archive', 'archive.tar.gz'],
// Run outside the appPath to make sure we are not publishing that dir.
workingDirectory: d.sandbox,
);
expect(pub.stdout, emitsThrough('Publishing from archive: archive.tar.gz'));
await confirmPublish(pub);
handleUploadForm(server);
handleUpload(server);
expect(pub.stdout, emitsThrough(startsWith('Uploading...')));
expect(
pub.stdout,
emits('Message from server: Package test_pkg 1.0.0 uploaded!'),
);
await pub.shouldExit(SUCCESS);
});
}