blob: ccd633a63ed0da6d32afd9bba45138c1fdeacbb7 [file] [log] [blame]
/*
* Copyright (C) 2015 The Android Open Source Project
*
* Licensed 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 com.android.tools.idea.gradle.dsl.parser;
import com.android.tools.idea.gradle.dsl.parser.ExternalDependencyElement.CompactNotation;
import com.android.tools.idea.gradle.dsl.parser.ExternalDependencyElement.DependencySpec;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import java.util.Arrays;
import java.util.Collection;
import static org.junit.Assert.*;
/**
* Tests for {@link ExternalDependencyElement.CompactNotation}.
*/
@RunWith(Parameterized.class)
public class CompactNotationTest {
@NotNull private String myNotationValue;
@Nullable private DependencySpec myDependencySpec;
public CompactNotationTest(@NotNull String notationValue, @Nullable DependencySpec dependencySpec) {
myNotationValue = notationValue;
myDependencySpec = dependencySpec;
}
@Parameterized.Parameters
public static Collection<Object[]> parameters() {
return Arrays.asList(new Object[][]{
{"org.gradle.test.classifiers:service:1.0:jdk15@jar",
new DependencySpec("service", "org.gradle.test.classifiers", "1.0", "jdk15", "jar")},
{"org.groovy:groovy:2.2.0@jar", new DependencySpec("groovy", "org.groovy", "2.2.0", null, "jar")},
{"org.mockito:mockito:1.9.0-rc1", new DependencySpec("mockito", "org.mockito", "1.9.0-rc1", null, null)},
{"org.hibernate:hibernate:3.1", new DependencySpec("hibernate", "org.hibernate", "3.1", null, null)},
{"", null}
});
}
@Test
public void parseCompactNotation() {
DependencySpec spec = CompactNotation.parse(myNotationValue);
assertEquals(myDependencySpec, spec);
if (spec != null) {
assertEquals(myNotationValue, spec.toString());
}
}
}