blob: 1d19088ff6c834322c0cb02e0897d5fe4dafdc79 [file] [log] [blame]
/*
* 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 static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
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.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
public class IvyCleanCacheTest {
private IvyCleanCache cleanCache;
private File cacheDir;
private File repoCache2;
private File repoCache;
private File resolutionCache;
@Rule
public ExpectedException expExc = ExpectedException.none();
@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() {
expExc.expect(BuildException.class);
expExc.expectMessage("unknown cache 'yourcache'");
cleanCache.setResolution(false);
cleanCache.setCache("yourcache");
cleanCache.perform();
}
}