Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
bc4de63b
Commit
bc4de63b
authored
Nov 17, 2015
by
Eike Ziller
Browse files
Merge remote-tracking branch 'origin/3.6'
Change-Id: I9b99eddcf54720f494449514ddaaa11544098c0d
parents
dffd49ef
28fc8c02
Changes
4
Hide whitespace changes
Inline
Side-by-side
plugins/autotest/autotestunittests.cpp
View file @
bc4de63b
...
...
@@ -79,6 +79,7 @@ void AutoTestUnitTests::testCodeParser()
QFETCH
(
int
,
expectedAutoTestsCount
);
QFETCH
(
int
,
expectedNamedQuickTestsCount
);
QFETCH
(
int
,
expectedUnnamedQuickTestsCount
);
QFETCH
(
int
,
expectedDataTagsCount
);
NavigationWidget
*
navigation
=
NavigationWidget
::
instance
();
navigation
->
activateSubWidget
(
Constants
::
AUTOTEST_ID
);
...
...
@@ -96,6 +97,7 @@ void AutoTestUnitTests::testCodeParser()
QCOMPARE
(
m_model
->
autoTestsCount
(),
expectedAutoTestsCount
);
QCOMPARE
(
m_model
->
namedQuickTestsCount
(),
expectedNamedQuickTestsCount
);
QCOMPARE
(
m_model
->
unnamedQuickTestsCount
(),
expectedUnnamedQuickTestsCount
);
QCOMPARE
(
m_model
->
dataTagsCount
(),
expectedDataTagsCount
);
QCOMPARE
(
m_model
->
parser
()
->
autoTestsCount
(),
expectedAutoTestsCount
);
QCOMPARE
(
m_model
->
parser
()
->
namedQuickTestsCount
(),
expectedNamedQuickTestsCount
);
...
...
@@ -109,20 +111,21 @@ void AutoTestUnitTests::testCodeParser_data()
QTest
::
addColumn
<
int
>
(
"expectedAutoTestsCount"
);
QTest
::
addColumn
<
int
>
(
"expectedNamedQuickTestsCount"
);
QTest
::
addColumn
<
int
>
(
"expectedUnnamedQuickTestsCount"
);
QTest
::
addColumn
<
int
>
(
"expectedDataTagsCount"
);
QTest
::
newRow
(
"plainAutoTest"
)
<<
QString
(
m_tmpDir
->
path
()
+
QLatin1String
(
"/plain/plain.pro"
))
<<
1
<<
0
<<
0
;
<<
1
<<
0
<<
0
<<
0
;
QTest
::
newRow
(
"mixedAutoTestAndQuickTests"
)
<<
QString
(
m_tmpDir
->
path
()
+
QLatin1String
(
"/mixed_atp/mixed_atp.pro"
))
<<
3
<<
5
<<
3
;
<<
3
<<
5
<<
3
<<
8
;
QTest
::
newRow
(
"plainAutoTestQbs"
)
<<
QString
(
m_tmpDir
->
path
()
+
QLatin1String
(
"/plain/plain.qbs"
))
<<
1
<<
0
<<
0
;
QTest
::
newRow
(
"mixedAu
o
tTestAndQuickTestsQbs"
)
<<
1
<<
0
<<
0
<<
0
;
QTest
::
newRow
(
"mixedAut
o
TestAndQuickTestsQbs"
)
<<
QString
(
m_tmpDir
->
path
()
+
QLatin1String
(
"/mixed_atp/mixed_atp.qbs"
))
<<
3
<<
5
<<
3
;
<<
3
<<
5
<<
3
<<
8
;
}
void
AutoTestUnitTests
::
testCodeParserSwitchStartup
()
...
...
@@ -131,6 +134,7 @@ void AutoTestUnitTests::testCodeParserSwitchStartup()
QFETCH
(
QList
<
int
>
,
expectedAutoTestsCount
);
QFETCH
(
QList
<
int
>
,
expectedNamedQuickTestsCount
);
QFETCH
(
QList
<
int
>
,
expectedUnnamedQuickTestsCount
);
QFETCH
(
QList
<
int
>
,
expectedDataTagsCount
);
NavigationWidget
*
navigation
=
NavigationWidget
::
instance
();
navigation
->
activateSubWidget
(
Constants
::
AUTOTEST_ID
);
...
...
@@ -149,6 +153,8 @@ void AutoTestUnitTests::testCodeParserSwitchStartup()
m_isQt4
?
0
:
expectedNamedQuickTestsCount
.
at
(
i
));
QCOMPARE
(
m_model
->
unnamedQuickTestsCount
(),
m_isQt4
?
0
:
expectedUnnamedQuickTestsCount
.
at
(
i
));
QCOMPARE
(
m_model
->
dataTagsCount
(),
expectedDataTagsCount
.
at
(
i
));
QCOMPARE
(
m_model
->
parser
()
->
autoTestsCount
(),
expectedAutoTestsCount
.
at
(
i
));
QCOMPARE
(
m_model
->
parser
()
->
namedQuickTestsCount
(),
...
...
@@ -164,6 +170,7 @@ void AutoTestUnitTests::testCodeParserSwitchStartup_data()
QTest
::
addColumn
<
QList
<
int
>
>
(
"expectedAutoTestsCount"
);
QTest
::
addColumn
<
QList
<
int
>
>
(
"expectedNamedQuickTestsCount"
);
QTest
::
addColumn
<
QList
<
int
>
>
(
"expectedUnnamedQuickTestsCount"
);
QTest
::
addColumn
<
QList
<
int
>
>
(
"expectedDataTagsCount"
);
QStringList
projects
=
QStringList
()
<<
QString
(
m_tmpDir
->
path
()
+
QLatin1String
(
"/plain/plain.pro"
))
...
...
@@ -174,9 +181,11 @@ void AutoTestUnitTests::testCodeParserSwitchStartup_data()
QList
<
int
>
expectedAutoTests
=
QList
<
int
>
()
<<
1
<<
3
<<
1
<<
3
;
QList
<
int
>
expectedNamedQuickTests
=
QList
<
int
>
()
<<
0
<<
5
<<
0
<<
5
;
QList
<
int
>
expectedUnnamedQuickTests
=
QList
<
int
>
()
<<
0
<<
3
<<
0
<<
3
;
QList
<
int
>
expectedDataTagsCount
=
QList
<
int
>
()
<<
0
<<
8
<<
0
<<
8
;
QTest
::
newRow
(
"loadMultipleProjects"
)
<<
projects
<<
expectedAutoTests
<<
expectedNamedQuickTests
<<
expectedUnnamedQuickTests
;
<<
projects
<<
expectedAutoTests
<<
expectedNamedQuickTests
<<
expectedUnnamedQuickTests
<<
expectedDataTagsCount
;
}
}
// namespace Internal
...
...
plugins/autotest/testcodeparser.cpp
View file @
bc4de63b
...
...
@@ -480,8 +480,12 @@ void TestCodeParser::checkDocumentForTestCode(CPlusPlus::Document::Ptr document)
visitor
.
accept
(
declaringDoc
->
globalNamespace
());
const
QMap
<
QString
,
TestCodeLocationAndType
>
testFunctions
=
visitor
.
privateSlots
();
const
QMap
<
QString
,
TestCodeLocationList
>
dataTags
=
QMap
<
QString
,
TestCodeLocationList
>
dataTags
=
checkForDataTags
(
declaringDoc
->
fileName
(),
testFunctions
);
if
(
declaringDoc
->
fileName
()
!=
document
->
fileName
())
dataTags
.
unite
(
checkForDataTags
(
document
->
fileName
(),
testFunctions
));
TestTreeItem
*
item
=
constructTestTreeItem
(
declaringDoc
->
fileName
(),
QString
(),
testCaseName
,
line
,
column
,
testFunctions
,
dataTags
);
...
...
plugins/autotest/testtreemodel.cpp
View file @
bc4de63b
...
...
@@ -670,6 +670,17 @@ int TestTreeModel::unnamedQuickTestsCount() const
return
unnamed
->
childCount
();
return
0
;
}
int
TestTreeModel
::
dataTagsCount
()
const
{
int
dataTagCount
=
0
;
foreach
(
Utils
::
TreeItem
*
item
,
m_autoTestRootItem
->
children
())
{
TestTreeItem
*
classItem
=
static_cast
<
TestTreeItem
*>
(
item
);
foreach
(
Utils
::
TreeItem
*
functionItem
,
classItem
->
children
())
dataTagCount
+=
functionItem
->
childCount
();
}
return
dataTagCount
;
}
#endif
/***************************** Sort/Filter Model **********************************/
...
...
plugins/autotest/testtreemodel.h
View file @
bc4de63b
...
...
@@ -67,6 +67,7 @@ public:
int
autoTestsCount
()
const
;
int
namedQuickTestsCount
()
const
;
int
unnamedQuickTestsCount
()
const
;
int
dataTagsCount
()
const
;
#endif
signals:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment