SDK Updater: platform dependency on tools, addon dependency on platform.
SDK BUG 2040986 Change-Id: Ica46d14939bb3a9bf499899a0bf571456d4c6017
This commit is contained in:
@@ -0,0 +1,136 @@
|
||||
/*
|
||||
* Copyright (C) 2009 The Android Open Source Project
|
||||
*
|
||||
* Licensed 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.
|
||||
*/
|
||||
|
||||
package com.android.sdklib.internal.repository;
|
||||
|
||||
import com.android.sdklib.AndroidVersion;
|
||||
import com.android.sdklib.IAndroidTarget;
|
||||
|
||||
/**
|
||||
* A mock {@link AddonPackage} for testing.
|
||||
*
|
||||
* By design, this package contains one and only one archive.
|
||||
*/
|
||||
public class MockAddonPackage extends AddonPackage {
|
||||
|
||||
/**
|
||||
* Creates a {@link MockAddonTarget} with the requested base platform and addon revision
|
||||
* and then a {@link MockAddonPackage} wrapping it.
|
||||
*
|
||||
* By design, this package contains one and only one archive.
|
||||
*/
|
||||
public MockAddonPackage(MockPlatformPackage basePlatform, int revision) {
|
||||
super(new MockAddonTarget(basePlatform.getTarget(), revision), null /*props*/);
|
||||
}
|
||||
|
||||
/**
|
||||
* A mock AddonTarget.
|
||||
* This reimplements the minimum needed from the interface for our limited testing needs.
|
||||
*/
|
||||
static class MockAddonTarget implements IAndroidTarget {
|
||||
|
||||
private final IAndroidTarget mParentTarget;
|
||||
private final int mRevision;
|
||||
|
||||
public MockAddonTarget(IAndroidTarget parentTarget, int revision) {
|
||||
mParentTarget = parentTarget;
|
||||
mRevision = revision;
|
||||
}
|
||||
|
||||
public String getClasspathName() {
|
||||
return null;
|
||||
}
|
||||
|
||||
public String getDefaultSkin() {
|
||||
return null;
|
||||
}
|
||||
|
||||
public String getDescription() {
|
||||
return "mock addon target";
|
||||
}
|
||||
|
||||
public String getFullName() {
|
||||
return "mock addon target";
|
||||
}
|
||||
|
||||
public String getLocation() {
|
||||
return "";
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return "mock addon target";
|
||||
}
|
||||
|
||||
public IOptionalLibrary[] getOptionalLibraries() {
|
||||
return null;
|
||||
}
|
||||
|
||||
public IAndroidTarget getParent() {
|
||||
return mParentTarget;
|
||||
}
|
||||
|
||||
public String getPath(int pathId) {
|
||||
return null;
|
||||
}
|
||||
|
||||
public String[] getPlatformLibraries() {
|
||||
return null;
|
||||
}
|
||||
|
||||
public int getRevision() {
|
||||
return mRevision;
|
||||
}
|
||||
|
||||
public String[] getSkins() {
|
||||
return null;
|
||||
}
|
||||
|
||||
public int getUsbVendorId() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
public String getVendor() {
|
||||
return null;
|
||||
}
|
||||
|
||||
public AndroidVersion getVersion() {
|
||||
return mParentTarget.getVersion();
|
||||
}
|
||||
|
||||
public String getVersionName() {
|
||||
return String.format("mock-addon-%1$d", getVersion().getApiLevel());
|
||||
}
|
||||
|
||||
public String hashString() {
|
||||
return getVersionName();
|
||||
}
|
||||
|
||||
/** Returns false for an addon. */
|
||||
public boolean isPlatform() {
|
||||
return false;
|
||||
}
|
||||
|
||||
public boolean isCompatibleBaseFor(IAndroidTarget target) {
|
||||
throw new UnsupportedOperationException("Implement this as needed for tests");
|
||||
}
|
||||
|
||||
public int compareTo(IAndroidTarget o) {
|
||||
throw new UnsupportedOperationException("Implement this as needed for tests");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,169 @@
|
||||
/*
|
||||
* Copyright (C) 2009 The Android Open Source Project
|
||||
*
|
||||
* Licensed 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.
|
||||
*/
|
||||
|
||||
package com.android.sdklib.internal.repository;
|
||||
|
||||
import com.android.sdklib.AndroidVersion;
|
||||
import com.android.sdklib.IAndroidTarget;
|
||||
|
||||
import java.util.Properties;
|
||||
|
||||
/**
|
||||
* A mock {@link PlatformPackage} for testing.
|
||||
*
|
||||
* By design, this package contains one and only one archive.
|
||||
*/
|
||||
public class MockPlatformPackage extends PlatformPackage {
|
||||
|
||||
private final IAndroidTarget mTarget;
|
||||
|
||||
/**
|
||||
* Creates a {@link MockPlatformTarget} with the requested API and revision
|
||||
* and then a {@link MockPlatformPackage} wrapping it.
|
||||
*
|
||||
* By design, this package contains one and only one archive.
|
||||
*/
|
||||
public MockPlatformPackage(int apiLevel, int revision) {
|
||||
this(new MockPlatformTarget(apiLevel, revision), null /*props*/);
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a {@link MockPlatformTarget} with the requested API and revision
|
||||
* and then a {@link MockPlatformPackage} wrapping it.
|
||||
*
|
||||
* Also sets the min-tools-rev of the platform.
|
||||
*
|
||||
* By design, this package contains one and only one archive.
|
||||
*/
|
||||
public MockPlatformPackage(int apiLevel, int revision, int min_tools_rev) {
|
||||
this(new MockPlatformTarget(apiLevel, revision), createProps(min_tools_rev));
|
||||
}
|
||||
|
||||
/** A little trick to be able to capture the target new after passing it to the super. */
|
||||
private MockPlatformPackage(IAndroidTarget target, Properties props) {
|
||||
super(target, props);
|
||||
mTarget = target;
|
||||
}
|
||||
|
||||
private static Properties createProps(int min_tools_rev) {
|
||||
Properties props = new Properties();
|
||||
props.setProperty(PlatformPackage.PROP_MIN_TOOLS_REV, Integer.toString((min_tools_rev)));
|
||||
return props;
|
||||
}
|
||||
|
||||
public IAndroidTarget getTarget() {
|
||||
return mTarget;
|
||||
}
|
||||
|
||||
/**
|
||||
* A mock PlatformTarget.
|
||||
* This reimplements the minimum needed from the interface for our limited testing needs.
|
||||
*/
|
||||
static class MockPlatformTarget implements IAndroidTarget {
|
||||
|
||||
private final int mApiLevel;
|
||||
private final int mRevision;
|
||||
|
||||
public MockPlatformTarget(int apiLevel, int revision) {
|
||||
mApiLevel = apiLevel;
|
||||
mRevision = revision;
|
||||
|
||||
}
|
||||
|
||||
public String getClasspathName() {
|
||||
return null;
|
||||
}
|
||||
|
||||
public String getDefaultSkin() {
|
||||
return null;
|
||||
}
|
||||
|
||||
public String getDescription() {
|
||||
return "mock platform target";
|
||||
}
|
||||
|
||||
public String getFullName() {
|
||||
return "mock platform target";
|
||||
}
|
||||
|
||||
public String getLocation() {
|
||||
return "";
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return "mock platform target";
|
||||
}
|
||||
|
||||
public IOptionalLibrary[] getOptionalLibraries() {
|
||||
return null;
|
||||
}
|
||||
|
||||
public IAndroidTarget getParent() {
|
||||
return null;
|
||||
}
|
||||
|
||||
public String getPath(int pathId) {
|
||||
return null;
|
||||
}
|
||||
|
||||
public String[] getPlatformLibraries() {
|
||||
return null;
|
||||
}
|
||||
|
||||
public int getRevision() {
|
||||
return mRevision;
|
||||
}
|
||||
|
||||
public String[] getSkins() {
|
||||
return null;
|
||||
}
|
||||
|
||||
public int getUsbVendorId() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
public String getVendor() {
|
||||
return null;
|
||||
}
|
||||
|
||||
public AndroidVersion getVersion() {
|
||||
return new AndroidVersion(mApiLevel, null /*codename*/);
|
||||
}
|
||||
|
||||
public String getVersionName() {
|
||||
return String.format("android-%1$d", mApiLevel);
|
||||
}
|
||||
|
||||
public String hashString() {
|
||||
return getVersionName();
|
||||
}
|
||||
|
||||
/** Returns true for a platform. */
|
||||
public boolean isPlatform() {
|
||||
return true;
|
||||
}
|
||||
|
||||
public boolean isCompatibleBaseFor(IAndroidTarget target) {
|
||||
throw new UnsupportedOperationException("Implement this as needed for tests");
|
||||
}
|
||||
|
||||
public int compareTo(IAndroidTarget o) {
|
||||
throw new UnsupportedOperationException("Implement this as needed for tests");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,48 @@
|
||||
/*
|
||||
* Copyright (C) 2009 The Android Open Source Project
|
||||
*
|
||||
* Licensed 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.
|
||||
*/
|
||||
|
||||
package com.android.sdklib.internal.repository;
|
||||
|
||||
import com.android.sdklib.internal.repository.Archive.Arch;
|
||||
import com.android.sdklib.internal.repository.Archive.Os;
|
||||
|
||||
/**
|
||||
* A mock {@link ToolPackage} for testing.
|
||||
*
|
||||
* By design, this package contains one and only one archive.
|
||||
*/
|
||||
public class MockToolPackage extends ToolPackage {
|
||||
|
||||
/**
|
||||
* Creates a {@link MockToolPackage} with the given revision and hardcoded defaults
|
||||
* for everything else.
|
||||
* <p/>
|
||||
* By design, this creates a package with one and only one archive.
|
||||
*/
|
||||
public MockToolPackage(int revision) {
|
||||
super(
|
||||
null, // source,
|
||||
null, // props,
|
||||
revision,
|
||||
null, // license,
|
||||
"desc", // description,
|
||||
"url", // descUrl,
|
||||
Os.getCurrentOs(), // archiveOs,
|
||||
Arch.getCurrentArch(), // archiveArch,
|
||||
"foo" // archiveOsPath
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user