blob: 6d9fea6d4a9750449a529483231aa656e942dc3f [file] [log] [blame]
/*
* Copyright 2000-2013 JetBrains s.r.o.
*
* 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.jetbrains.python.codeInsight;
import com.jetbrains.python.fixtures.PyTestCase;
import com.jetbrains.python.psi.PyClass;
import com.jetbrains.python.psi.types.PyClassLikeType;
import com.jetbrains.python.psi.types.TypeEvalContext;
import org.jetbrains.annotations.NotNull;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
/**
* @author vlan
*/
public class PyClassMROTest extends PyTestCase {
public void testSimpleDiamond() {
assertMRO(getClass("C"), "B1", "B2", "object");
}
// TypeError in Python
public void testMROConflict() {
assertMRO(getClass("C"));
}
public void testCircularInheritance() {
final String testName = getTestName(false);
myFixture.configureByFiles(getPath(testName), getPath(testName + "2"));
final PyClass cls = myFixture.findElementByText("Foo", PyClass.class);
assertNotNull(cls);
assertMRO(cls);
}
public void testExampleFromDoc1() {
assertMRO(getClass("A"), "B", "C", "D", "E", "F", "object");
}
public void testExampleFromDoc2() {
assertMRO(getClass("A"), "B", "E", "C", "D", "F", "object");
}
public void testExampleFromDoc3() {
assertMRO(getClass("G"));
}
public void testExampleFromDoc4() {
assertMRO(getClass("G"), "E", "F", "object");
}
public void testSixWithMetaclass() {
assertMRO(getClass("C"), "B", "object");
}
// PY-4183
public void testComplicatedDiamond() {
assertMRO(getClass("H"), "E", "F", "B", "G", "C", "D", "A", "object");
}
public void assertMRO(@NotNull PyClass cls, @NotNull String... mro) {
final List<PyClassLikeType> types = cls.getAncestorTypes(TypeEvalContext.codeInsightFallback());
final List<String> classNames = new ArrayList<String>();
for (PyClassLikeType type : types) {
if (type != null) {
final String name = type.getName();
if (name != null) {
classNames.add(name);
continue;
}
}
classNames.add("unknown");
}
assertOrderedEquals(classNames, Arrays.asList(mro));
}
@NotNull
public PyClass getClass(@NotNull String name) {
myFixture.configureByFile(getPath(getTestName(false)));
final PyClass cls = myFixture.findElementByText(name, PyClass.class);
assertNotNull(cls);
return cls;
}
private static String getPath(String name) {
return "codeInsight/classMRO/" + name + ".py";
}
}