use of com.android.repository.testframework.FakeDownloader in project android by JetBrains.
the class PatchInstallerFactoryTest method createInstallerWithoutPatch.
@Test
public void createInstallerWithoutPatch() {
myFileOp.setIsWindows(true);
FakeRemotePackage remote = new FakeRemotePackage("foo");
remote.setRevision(new Revision(2));
FakeLocalPackage local = new FakeLocalPackage("foo");
local.setRevision(new Revision(1));
myRepositoryPackages.setLocalPkgInfos(ImmutableList.of(local, PATCHER_4));
myRepositoryPackages.setRemotePkgInfos(ImmutableList.of(remote));
Installer installer = myInstallerFactory.createInstaller(remote, myRepoManager, new FakeDownloader(myFileOp), myFileOp);
assertTrue(installer instanceof FullInstaller);
}
use of com.android.repository.testframework.FakeDownloader in project android by JetBrains.
the class PatchInstallerFactoryTest method createInstallerWithPatch.
@Test
public void createInstallerWithPatch() {
FakeRemotePackage remote = new FakeRemotePackage("foo");
remote.setRevision(new Revision(2));
remote.setPatchInfo("foo", new Revision(1));
FakeLocalPackage local = new FakeLocalPackage("foo");
local.setRevision(new Revision(1));
myRepositoryPackages.setLocalPkgInfos(ImmutableList.of(local, PATCHER_4));
myRepositoryPackages.setRemotePkgInfos(ImmutableList.of(remote));
Installer installer = myInstallerFactory.createInstaller(remote, myRepoManager, new FakeDownloader(myFileOp), myFileOp);
assertTrue(installer instanceof PatchInstaller);
}
use of com.android.repository.testframework.FakeDownloader in project android by JetBrains.
the class PatchInstallerFactoryTest method createFallbackInstaller.
@Test
public void createFallbackInstaller() {
FakeRemotePackage remote = new FakeRemotePackage("foo");
remote.setRevision(new Revision(2));
FakeLocalPackage local = new FakeLocalPackage("foo");
local.setRevision(new Revision(1));
myRepositoryPackages.setLocalPkgInfos(ImmutableList.of(local, PATCHER_4));
myRepositoryPackages.setRemotePkgInfos(ImmutableList.of(remote));
Installer installer = myInstallerFactory.createInstaller(remote, myRepoManager, new FakeDownloader(myFileOp), myFileOp);
assertNotNull(installer);
assertFalse(installer instanceof PatchOperation);
}
Aggregations