mirror of https://github.com/apache/ant-ivy
115 lines
3.5 KiB
Java
115 lines
3.5 KiB
Java
/*
|
|
* 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
|
|
*
|
|
* https://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 org.apache.ivy.ant;
|
|
|
|
import java.io.File;
|
|
|
|
import org.apache.ivy.TestHelper;
|
|
|
|
import org.apache.tools.ant.BuildException;
|
|
import org.apache.tools.ant.Project;
|
|
|
|
import org.junit.Before;
|
|
import org.junit.Test;
|
|
|
|
import static org.junit.Assert.assertEquals;
|
|
import static org.junit.Assert.assertFalse;
|
|
import static org.junit.Assert.assertThrows;
|
|
import static org.junit.Assert.assertTrue;
|
|
|
|
public class IvyCleanCacheTest {
|
|
|
|
private IvyCleanCache cleanCache;
|
|
|
|
private File cacheDir;
|
|
|
|
private File repoCache2;
|
|
|
|
private File repoCache;
|
|
|
|
private File resolutionCache;
|
|
|
|
@Before
|
|
public void setUp() throws Exception {
|
|
Project p = TestHelper.newProject();
|
|
cacheDir = new File("build/cache");
|
|
p.setProperty("cache", cacheDir.getAbsolutePath());
|
|
cleanCache = new IvyCleanCache();
|
|
cleanCache.setProject(p);
|
|
IvyConfigure settings = new IvyConfigure();
|
|
settings.setProject(p);
|
|
settings.setUrl(IvyCleanCacheTest.class.getResource("ivysettings-cleancache.xml")
|
|
.toExternalForm());
|
|
settings.perform();
|
|
|
|
resolutionCache = new File(cacheDir, "resolution");
|
|
repoCache = new File(cacheDir, "repository");
|
|
repoCache2 = new File(cacheDir, "repository2");
|
|
resolutionCache.mkdirs();
|
|
repoCache.mkdirs();
|
|
repoCache2.mkdirs();
|
|
}
|
|
|
|
@Test
|
|
public void testCleanAll() {
|
|
cleanCache.perform();
|
|
assertFalse(resolutionCache.exists());
|
|
assertFalse(repoCache.exists());
|
|
assertFalse(repoCache2.exists());
|
|
}
|
|
|
|
@Test
|
|
public void testResolutionOnly() {
|
|
cleanCache.setCache(IvyCleanCache.NONE);
|
|
cleanCache.perform();
|
|
assertFalse(resolutionCache.exists());
|
|
assertTrue(repoCache.exists());
|
|
assertTrue(repoCache2.exists());
|
|
}
|
|
|
|
@Test
|
|
public void testRepositoryOnly() {
|
|
cleanCache.setResolution(false);
|
|
cleanCache.perform();
|
|
assertTrue(resolutionCache.exists());
|
|
assertFalse(repoCache.exists());
|
|
assertFalse(repoCache2.exists());
|
|
}
|
|
|
|
@Test
|
|
public void testOneRepositoryOnly() {
|
|
cleanCache.setResolution(false);
|
|
cleanCache.setCache("mycache");
|
|
cleanCache.perform();
|
|
assertTrue(resolutionCache.exists());
|
|
assertFalse(repoCache.exists());
|
|
assertTrue(repoCache2.exists());
|
|
}
|
|
|
|
/**
|
|
* clean cache must fail with unknown cache
|
|
*/
|
|
@Test
|
|
public void testUnknownCache() {
|
|
cleanCache.setResolution(false);
|
|
cleanCache.setCache("yourcache");
|
|
Exception exception = assertThrows(BuildException.class, () -> cleanCache.perform());
|
|
assertEquals("unknown cache 'yourcache'", exception.getMessage());
|
|
}
|
|
}
|