mirror of
https://github.com/apache/cordova-android.git
synced 2026-01-30 00:05:28 +08:00
fix: cordova requirements command and SDK lookup based on tools (#1877)
* fix: cordova requirements command and SDK lookup based on tools * Update spec/unit/AndroidCommandLineTools.spec.js Co-authored-by: エリス <erisu@users.noreply.github.com> * Update lib/env/AndroidCommandLineTools.js Co-authored-by: エリス <erisu@users.noreply.github.com> * Update lib/env/AndroidCommandLineTools.js Co-authored-by: エリス <erisu@users.noreply.github.com> * Update lib/env/AndroidCommandLineTools.js --------- Co-authored-by: エリス <erisu@users.noreply.github.com>
This commit is contained in:
105
spec/unit/AndroidCommandLineTools.spec.js
Normal file
105
spec/unit/AndroidCommandLineTools.spec.js
Normal file
@@ -0,0 +1,105 @@
|
||||
/**
|
||||
Licensed to the Apache Software Foundation (ASF) under one
|
||||
or more contributor license agreements. See the NOTICE file
|
||||
distributed with this work for additional information
|
||||
regarding copyright ownership. The ASF licenses this file
|
||||
to you under the Apache License, Version 2.0 (the
|
||||
"License"); you may not use this file except in compliance
|
||||
with the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing,
|
||||
software distributed under the License is distributed on an
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
KIND, either express or implied. See the License for the
|
||||
specific language governing permissions and limitations
|
||||
under the License.
|
||||
*/
|
||||
|
||||
const fs = require('node:fs');
|
||||
const path = require('node:path');
|
||||
const AndroidCommandLineTools = require('../../lib/env/AndroidCommandLineTools');
|
||||
|
||||
describe('AndroidCommandLineTools', () => {
|
||||
beforeAll(() => {
|
||||
// For the purposes of these test, we will assume ANDROID_HOME is proper.
|
||||
spyOn(fs, 'existsSync').and.returnValue(true);
|
||||
});
|
||||
|
||||
describe('getAvailableVersions', () => {
|
||||
describe('should return a list of command line versions', () => {
|
||||
it('in descending order', () => {
|
||||
spyOn(fs, 'readdirSync').and.returnValue([
|
||||
'10.0',
|
||||
'15.0',
|
||||
'13'
|
||||
]);
|
||||
|
||||
expect(AndroidCommandLineTools.getAvailableVersions()).toEqual([
|
||||
'15.0',
|
||||
'13',
|
||||
'10.0'
|
||||
]);
|
||||
});
|
||||
|
||||
it('stable releases appear before prereleases', () => {
|
||||
spyOn(fs, 'readdirSync').and.returnValue([
|
||||
'15.0-rc01',
|
||||
'15.0-alpha01',
|
||||
'15.0'
|
||||
]);
|
||||
|
||||
expect(AndroidCommandLineTools.getAvailableVersions()).toEqual([
|
||||
'15.0',
|
||||
'15.0-rc01',
|
||||
'15.0-alpha01'
|
||||
]);
|
||||
});
|
||||
|
||||
it('"latest" should take all precedence', () => {
|
||||
spyOn(fs, 'readdirSync').and.returnValue([
|
||||
'15.0-rc01',
|
||||
'15.0-alpha01',
|
||||
'15.0',
|
||||
'latest'
|
||||
]);
|
||||
|
||||
expect(AndroidCommandLineTools.getAvailableVersions()).toEqual([
|
||||
'latest',
|
||||
'15.0',
|
||||
'15.0-rc01',
|
||||
'15.0-alpha01'
|
||||
]);
|
||||
});
|
||||
|
||||
it('invalid versions are ignored', () => {
|
||||
spyOn(fs, 'readdirSync').and.returnValue([
|
||||
'15.0-rc01',
|
||||
'xyz',
|
||||
'15.0'
|
||||
]);
|
||||
|
||||
expect(AndroidCommandLineTools.getAvailableVersions()).toEqual([
|
||||
'15.0',
|
||||
'15.0-rc01'
|
||||
]);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
describe('getBinPath', () => {
|
||||
beforeEach(() => {
|
||||
spyOn(AndroidCommandLineTools, '__getAndroidHome').and.returnValue('/Android/Sdk');
|
||||
});
|
||||
|
||||
it('should return the bin path of the latest version', () => {
|
||||
spyOn(AndroidCommandLineTools, 'getAvailableVersions').and.returnValue([
|
||||
'19.0',
|
||||
'18.0'
|
||||
]);
|
||||
|
||||
expect(AndroidCommandLineTools.getBinPath()).toBe(path.resolve('/Android/Sdk/cmdline-tools/19.0/bin'));
|
||||
});
|
||||
});
|
||||
});
|
||||
@@ -27,6 +27,7 @@ const which = require('which');
|
||||
const {
|
||||
SDK_VERSION: DEFAULT_TARGET_API
|
||||
} = require('../../lib/gradle-config-defaults');
|
||||
const AndroidCommandLineTools = require('../../lib/env/AndroidCommandLineTools');
|
||||
|
||||
describe('check_reqs', function () {
|
||||
let check_reqs;
|
||||
@@ -58,6 +59,10 @@ describe('check_reqs', function () {
|
||||
});
|
||||
|
||||
describe('check_android', function () {
|
||||
beforeAll(() => {
|
||||
spyOn(AndroidCommandLineTools, 'getAvailableVersions').and.returnValue(['latest']);
|
||||
});
|
||||
|
||||
describe('find and set ANDROID_HOME when neither ANDROID_HOME nor ANDROID_SDK_ROOT is set', function () {
|
||||
beforeEach(function () {
|
||||
delete process.env.ANDROID_HOME;
|
||||
@@ -123,13 +128,13 @@ describe('check_reqs', function () {
|
||||
spyOn(fs, 'existsSync').and.returnValue(true);
|
||||
spyOn(which, 'sync').and.callFake(function (cmd) {
|
||||
if (cmd === 'avdmanager') {
|
||||
return path.normalize('/android/sdk/tools/bin/avdmanager');
|
||||
return path.resolve('/android/sdk/cmdline-tools/latest/bin/avdmanager');
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
});
|
||||
return check_reqs.check_android().then(function () {
|
||||
expect(process.env.ANDROID_HOME).toEqual(path.normalize('/android/sdk'));
|
||||
expect(process.env.ANDROID_HOME).toEqual(path.resolve('/android/sdk'));
|
||||
});
|
||||
});
|
||||
it('should error out if `avdmanager` command exists in a non-SDK-like directory structure', () => {
|
||||
@@ -208,9 +213,8 @@ describe('check_reqs', function () {
|
||||
});
|
||||
it('should add tools/bin,tools,platform-tools to PATH if `avdmanager`,`android`,`adb` is not found', () => {
|
||||
return check_reqs.check_android().then(function () {
|
||||
expect(process.env.PATH).toContain('let the children play' + path.sep + 'tools');
|
||||
expect(process.env.PATH).toContain('let the children play' + path.sep + 'platform-tools');
|
||||
expect(process.env.PATH).toContain('let the children play' + path.sep + 'tools' + path.sep + 'bin');
|
||||
expect(process.env.PATH).toContain('let the children play' + path.sep + 'cmdline-tools' + path.sep + 'latest' + path.sep + 'bin');
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user