blob: 694408e331d0e8f6d07d6404c741eb9c07ef5b73 [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
*
* 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 org.apache.ivy.util;
import java.util.HashMap;
import java.util.Map;
import org.apache.ivy.core.IvyPatternHelper;
import junit.framework.TestCase;
public class IvyPatternHelperTest extends TestCase {
public void testSubstitute() {
String pattern = "[organisation]/[module]/build/archives/[type]s/[artifact]-[revision].[ext]";
assertEquals("apache/Test/build/archives/jars/test-1.0.jar",
IvyPatternHelper.substitute(pattern, "apache", "Test", "1.0", "test", "jar", "jar"));
}
public void testCyclicSubstitute() {
String pattern = "${var}";
Map variables = new HashMap();
variables.put("var", "${othervar}");
variables.put("othervar", "${var}");
try {
IvyPatternHelper.substituteVariables(pattern, variables);
fail("cyclic var should raise an exception");
} catch (Exception ex) {
// ok
} catch (Error er) {
fail("cyclic var shouldn't raise an error: " + er);
}
}
public void testOptionalSubstitute() {
Map tokens = new HashMap();
tokens.put("token", "");
tokens.put("othertoken", "myval");
assertEquals("test-myval",
IvyPatternHelper.substituteTokens("test(-[token])(-[othertoken])", tokens));
tokens.put("token", "val");
assertEquals("test-val-myval",
IvyPatternHelper.substituteTokens("test(-[token])(-[othertoken])", tokens));
}
public void testOrganization() {
String pattern = "[organization]/[module]/build/archives/[type]s/[artifact]-[revision].[ext]";
assertEquals("apache/Test/build/archives/jars/test-1.0.jar",
IvyPatternHelper.substitute(pattern, "apache", "Test", "1.0", "test", "jar", "jar"));
}
public void testSpecialCharsInsidePattern() {
String pattern = "[organization]/[module]/build/archives (x86)/[type]s/[artifact]-[revision].[ext]";
assertEquals("apache/Test/build/archives (x86)/jars/test-1.0.jar",
IvyPatternHelper.substitute(pattern, "apache", "Test", "1.0", "test", "jar", "jar"));
}
public void testTokenRoot() {
String pattern = "lib/[type]/[artifact].[ext]";
assertEquals("lib/", IvyPatternHelper.getTokenRoot(pattern));
}
public void testTokenRootWithOptionalFirstToken() {
String pattern = "lib/([type]/)[artifact].[ext]";
assertEquals("lib/", IvyPatternHelper.getTokenRoot(pattern));
}
}