blob: 85945fca7bb60aaab14c8e312ba56c15c4dcb6fa [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 org.apache.ivy.core.report.ResolveReport;
import org.apache.tools.ant.BuildFileRule;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
public class IvyAntSettingsBuildFileTest {
@Rule
public final BuildFileRule buildRule = new BuildFileRule();
@Before
public void setUp() {
buildRule.configureProject("test/java/org/apache/ivy/ant/IvyAntSettingsBuildFile.xml");
}
@Test
public void testOverrideNotSpecified() {
buildRule.executeTarget("testOverrideNotSpecified");
ResolveReport report = buildRule.getProject().getReference("ivy.resolved.report");
assertNotNull(report);
assertFalse(report.hasError());
assertEquals(1, report.getDependencies().size());
}
@Test
public void testOverrideSetToFalse() {
buildRule.executeTarget("testOverrideSetToFalse");
ResolveReport report = buildRule.getProject().getReference("ivy.resolved.report");
assertNotNull(report);
assertFalse(report.hasError());
assertEquals(1, report.getDependencies().size());
}
@Test
public void testUnnecessaryDefaultIvyInstance() {
buildRule.executeTarget("testUnnecessaryDefaultIvyInstance");
assertNull("Default ivy.instance settings shouldn't have been loaded",
buildRule.getProject().getReference("ivy.instance"));
}
/**
* Test case for IVY-925.
*
* @see <a href="https://issues.apache.org/jira/browse/IVY-925">IVY-925</a>
*/
@Test
public void testSettingsWithIdIvyInstance() {
buildRule.executeTarget("testSettingsWithPropertyAsId");
ResolveReport report = buildRule.getProject().getReference("ivy.resolved.report");
assertNotNull(report);
assertFalse(report.hasError());
assertEquals(1, report.getDependencies().size());
}
/**
* Test case for IVY-924.
*
* @see <a href="https://issues.apache.org/jira/browse/IVY-924">IVY-924</a>
*/
@Test
public void testStackOverflow() {
buildRule.configureProject("test/java/org/apache/ivy/ant/IvyAntSettingsBuildFileStackOverflow.xml");
buildRule.executeTarget("testStackOverflow");
ResolveReport report = buildRule.getProject().getReference("ivy.resolved.report");
assertNotNull(report);
assertFalse(report.hasError());
assertEquals(1, report.getDependencies().size());
}
}