mirror of
https://github.com/github/codeql.git
synced 2025-12-21 03:06:31 +01:00
90 lines
2.1 KiB
Plaintext
90 lines
2.1 KiB
Plaintext
/**
|
|
* Provides classes for identifying files that contain test cases. It is often
|
|
* desirable to exclude these files from analysis.
|
|
*/
|
|
|
|
import semmle.code.cpp.File
|
|
|
|
/**
|
|
* The `gtest/gtest.h` file.
|
|
*/
|
|
private class GoogleTestHeader extends File {
|
|
GoogleTestHeader() {
|
|
this.getBaseName() = "gtest.h" and
|
|
this.getParentContainer().getBaseName() = "gtest"
|
|
}
|
|
}
|
|
|
|
/**
|
|
* A test using the Google Test library.
|
|
*/
|
|
private class GoogleTest extends MacroInvocation {
|
|
GoogleTest() {
|
|
// invocation of a macro from Google Test.
|
|
this.getMacro().getFile() instanceof GoogleTestHeader
|
|
}
|
|
}
|
|
|
|
/**
|
|
* The `boost/test` directory.
|
|
*/
|
|
private class BoostTestFolder extends Folder {
|
|
BoostTestFolder() {
|
|
this.getBaseName() = "test" and
|
|
this.getParentContainer().getBaseName() = "boost"
|
|
}
|
|
}
|
|
|
|
/**
|
|
* A test using the Boost Test library.
|
|
*/
|
|
private class BoostTest extends MacroInvocation {
|
|
BoostTest() {
|
|
// invocation of a macro from Boost Test.
|
|
this.getMacro().getFile().getParentContainer+() instanceof BoostTestFolder
|
|
}
|
|
}
|
|
|
|
/**
|
|
* The `cppunit` directory.
|
|
*/
|
|
private class CppUnitFolder extends Folder {
|
|
CppUnitFolder() { this.getBaseName() = "cppunit" }
|
|
}
|
|
|
|
/**
|
|
* A class from the `cppunit` directory.
|
|
*/
|
|
private class CppUnitClass extends Class {
|
|
CppUnitClass() {
|
|
this.getFile().getParentContainer+() instanceof CppUnitFolder and
|
|
this.getNamespace().getParentNamespace*().getName() = "CppUnit"
|
|
}
|
|
}
|
|
|
|
/**
|
|
* A test using the CppUnit library.
|
|
*/
|
|
private class CppUnitTest extends Element {
|
|
CppUnitTest() {
|
|
// class with a base class from cppunit.
|
|
this.(Class).getABaseClass*() instanceof CppUnitClass and
|
|
// class itself is not a part of cppunit.
|
|
not this instanceof CppUnitClass
|
|
or
|
|
// any member function of a test is also test code
|
|
this.(Function).getDeclaringType() instanceof CppUnitTest
|
|
}
|
|
}
|
|
|
|
/**
|
|
* A file that contains one or more test cases.
|
|
*/
|
|
class TestFile extends File {
|
|
TestFile() {
|
|
exists(GoogleTest test | test.getFile() = this) or
|
|
exists(BoostTest test | test.getFile() = this) or
|
|
exists(CppUnitTest test | test.getFile() = this)
|
|
}
|
|
}
|