blob: ee5153f935812dedc77d0ecbd8a83a7fa5a39ef6 [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.geode.test.compiler;
import java.util.List;
import java.util.Set;
import com.google.common.collect.ImmutableSet;
import com.google.common.collect.Sets;
import org.assertj.core.api.SoftAssertions;
import org.junit.Test;
public class ClassNameExtractorTest {
private static final String SPACE = " ";
private static final String CLASS_NAME_TO_FIND = "MyClassNameToFind";
@Test
public void extractsClassNames() throws Exception {
SoftAssertions softAssertions = new SoftAssertions();
ClassNameExtractor classNameExtractor = new ClassNameExtractor();
Set<List<String>> permutationsToTest = Sets.cartesianProduct(
ImmutableSet.of("public ", "private ", "protected ", ""), ImmutableSet.of("abstract ", ""),
ImmutableSet.of("static ", ""), ImmutableSet.of("class ", "interface "),
ImmutableSet.of("extends Foo ", ""), ImmutableSet.of("implements Bar ", ""));
for (List<String> permutation : permutationsToTest) {
String firstLineOfSource =
permutation.get(0) + permutation.get(1) + permutation.get(2) + permutation.get(3)
+ CLASS_NAME_TO_FIND + SPACE + permutation.get(4) + permutation.get(5) + " {";
String className = classNameExtractor.extractFromSourceCode(firstLineOfSource);
softAssertions.assertThat(className).isEqualTo(CLASS_NAME_TO_FIND);
}
softAssertions.assertAll();
}
}