-
-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#2780 introduced method for splitting fqn to class and subname
- Loading branch information
Showing
2 changed files
with
90 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
/* | ||
* Copyright 2015-2024 Alexandr Evstigneev | ||
* | ||
* 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 unit.perl; | ||
|
||
import base.PerlLightTestCase; | ||
import com.intellij.testFramework.Parameterized; | ||
import com.perl5.lang.perl.util.PerlPackageUtil; | ||
import org.jetbrains.annotations.Nullable; | ||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
|
||
import java.util.Arrays; | ||
import java.util.Collections; | ||
|
||
@SuppressWarnings("Junit4RunWithInspection") | ||
@RunWith(Parameterized.class) | ||
public class PerlPackageUtilTest extends PerlLightTestCase { | ||
private final @Nullable String myFqn; | ||
private final @Nullable String myPackageName; | ||
private final @Nullable String mySubName; | ||
|
||
public PerlPackageUtilTest(@Nullable String fqn, @Nullable String packageName, @Nullable String subName) { | ||
myFqn = fqn; | ||
myPackageName = packageName; | ||
mySubName = subName; | ||
} | ||
|
||
@Test | ||
public void test() { | ||
var result = PerlPackageUtil.splitNames(myFqn); | ||
if (myFqn == null || myFqn.isEmpty()) { | ||
assertNull(result); | ||
} | ||
else { | ||
assertNotNull(result); | ||
assertEquals(myPackageName, result.getFirst()); | ||
assertEquals(mySubName, result.getSecond()); | ||
} | ||
} | ||
|
||
@org.junit.runners.Parameterized.Parameters(name = "{0}") | ||
public static Iterable<Object[]> fakeData() { | ||
return Collections.emptyList(); | ||
} | ||
|
||
@Parameterized.Parameters(name = "{0}") | ||
public static Iterable<Object[]> realData(Class<?> clazz) { | ||
return Arrays.asList(new Object[][]{ | ||
{null, null, null}, | ||
{"", null, null}, | ||
{"::subname", "main", "subname"}, | ||
{"Foo::", "Foo", null}, | ||
{"Foo::subname", "Foo", "subname"}, | ||
}); | ||
} | ||
} |