| 
									
										
										
										
											2012-10-02 09:12:39 +02:00
										 |  |  | /****************************************************************************
 | 
					
						
							| 
									
										
										
										
											2012-02-03 13:50:04 +01:00
										 |  |  | ** | 
					
						
							| 
									
										
										
										
											2013-01-28 17:12:19 +01:00
										 |  |  | ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). | 
					
						
							| 
									
										
										
										
											2012-10-02 09:12:39 +02:00
										 |  |  | ** Contact: http://www.qt-project.org/legal
 | 
					
						
							| 
									
										
										
										
											2012-02-03 13:50:04 +01:00
										 |  |  | ** | 
					
						
							| 
									
										
										
										
											2012-10-02 09:12:39 +02:00
										 |  |  | ** This file is part of Qt Creator. | 
					
						
							| 
									
										
										
										
											2012-02-03 13:50:04 +01:00
										 |  |  | ** | 
					
						
							| 
									
										
										
										
											2012-10-02 09:12:39 +02:00
										 |  |  | ** Commercial License Usage | 
					
						
							|  |  |  | ** Licensees holding valid commercial Qt licenses may use this file in | 
					
						
							|  |  |  | ** accordance with the commercial license agreement provided with the | 
					
						
							|  |  |  | ** Software or, alternatively, in accordance with the terms contained in | 
					
						
							|  |  |  | ** a written agreement between you and Digia.  For licensing terms and | 
					
						
							|  |  |  | ** conditions see http://qt.digia.com/licensing.  For further information
 | 
					
						
							|  |  |  | ** use the contact form at http://qt.digia.com/contact-us.
 | 
					
						
							| 
									
										
										
										
											2012-02-03 13:50:04 +01:00
										 |  |  | ** | 
					
						
							|  |  |  | ** GNU Lesser General Public License Usage | 
					
						
							| 
									
										
										
										
											2012-10-02 09:12:39 +02:00
										 |  |  | ** Alternatively, this file may be used under the terms of the GNU Lesser | 
					
						
							|  |  |  | ** General Public License version 2.1 as published by the Free Software | 
					
						
							|  |  |  | ** Foundation and appearing in the file LICENSE.LGPL included in the | 
					
						
							|  |  |  | ** packaging of this file.  Please review the following information to | 
					
						
							|  |  |  | ** ensure the GNU Lesser General Public License version 2.1 requirements | 
					
						
							|  |  |  | ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
 | 
					
						
							|  |  |  | ** | 
					
						
							|  |  |  | ** In addition, as a special exception, Digia gives you certain additional | 
					
						
							|  |  |  | ** rights.  These rights are described in the Digia Qt LGPL Exception | 
					
						
							| 
									
										
										
										
											2012-02-03 13:50:04 +01:00
										 |  |  | ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. | 
					
						
							|  |  |  | ** | 
					
						
							| 
									
										
										
										
											2012-10-02 09:12:39 +02:00
										 |  |  | ****************************************************************************/ | 
					
						
							| 
									
										
										
										
											2012-02-03 13:50:04 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-27 18:54:03 +01:00
										 |  |  | #include <cplusplus/CPlusPlus.h>
 | 
					
						
							|  |  |  | #include <cplusplus/CppDocument.h>
 | 
					
						
							|  |  |  | #include <cplusplus/LookupContext.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-15 10:42:41 +01:00
										 |  |  | #include <QtTest>
 | 
					
						
							|  |  |  | #include <QObject>
 | 
					
						
							|  |  |  | #include <QFile>
 | 
					
						
							| 
									
										
										
										
											2012-02-03 13:50:04 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | //TESTED_COMPONENT=src/libs/cplusplus
 | 
					
						
							|  |  |  | using namespace CPlusPlus; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define VERIFY_ERRORS() \
 | 
					
						
							|  |  |  |     do { \ | 
					
						
							|  |  |  |       QByteArray expectedErrors; \ | 
					
						
							| 
									
										
										
										
											2012-09-12 14:42:40 +02:00
										 |  |  |       if (!errorFile.isEmpty()) { \ | 
					
						
							|  |  |  |         QFile e(testdata(errorFile)); \ | 
					
						
							|  |  |  |         if (e.open(QFile::ReadOnly)) \ | 
					
						
							|  |  |  |           expectedErrors = QTextStream(&e).readAll().toUtf8(); \ | 
					
						
							|  |  |  |       } \ | 
					
						
							| 
									
										
										
										
											2012-09-12 12:10:37 +02:00
										 |  |  |       QCOMPARE(QString::fromLatin1(errors), QString::fromLatin1(expectedErrors)); \ | 
					
						
							| 
									
										
										
										
											2012-02-03 13:50:04 +01:00
										 |  |  |     } while (0) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class tst_cxx11: public QObject | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     Q_OBJECT | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |         Returns the path to some testdata file or directory. | 
					
						
							|  |  |  |     */ | 
					
						
							|  |  |  |     static QString testdata(const QString &name = QString()) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2012-11-06 12:41:05 +01:00
										 |  |  |         static const QString dataDirectory = QLatin1String(SRCDIR "/data"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-03 13:50:04 +01:00
										 |  |  |         QString result = dataDirectory; | 
					
						
							|  |  |  |         if (!name.isEmpty()) { | 
					
						
							|  |  |  |             result += QLatin1Char('/'); | 
					
						
							|  |  |  |             result += name; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return result; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     struct Client: CPlusPlus::DiagnosticClient { | 
					
						
							|  |  |  |         QByteArray *errors; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         Client(QByteArray *errors) | 
					
						
							|  |  |  |             : errors(errors) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         virtual void report(int level, | 
					
						
							|  |  |  |                             const StringLiteral *fileName, | 
					
						
							|  |  |  |                             unsigned line, unsigned column, | 
					
						
							|  |  |  |                             const char *format, va_list ap) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             if (! errors) | 
					
						
							|  |  |  |                 return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             static const char *const pretty[] = { "warning", "error", "fatal" }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             QString str; | 
					
						
							|  |  |  |             str.sprintf("%s:%d:%d: %s: ", fileName->chars(), line, column, pretty[level]); | 
					
						
							|  |  |  |             errors->append(str.toUtf8()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             str.vsprintf(format, ap); | 
					
						
							|  |  |  |             errors->append(str.toUtf8()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             errors->append('\n'); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Document::Ptr document(const QString &fileName, QByteArray *errors = 0) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         Document::Ptr doc = Document::create(fileName); | 
					
						
							|  |  |  |         QFile file(testdata(fileName)); | 
					
						
							|  |  |  |         if (file.open(QFile::ReadOnly)) { | 
					
						
							|  |  |  |             Client client(errors); | 
					
						
							|  |  |  |             doc->control()->setDiagnosticClient(&client); | 
					
						
							|  |  |  |             doc->setUtf8Source(QTextStream(&file).readAll().toUtf8()); | 
					
						
							|  |  |  |             doc->translationUnit()->setCxxOxEnabled(true); | 
					
						
							|  |  |  |             doc->check(); | 
					
						
							|  |  |  |             doc->control()->setDiagnosticClient(0); | 
					
						
							| 
									
										
										
										
											2012-09-12 12:10:37 +02:00
										 |  |  |         } else { | 
					
						
							|  |  |  |             qWarning() << "could not read file" << fileName; | 
					
						
							| 
									
										
										
										
											2012-02-03 13:50:04 +01:00
										 |  |  |         } | 
					
						
							|  |  |  |         return doc; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private Q_SLOTS: | 
					
						
							|  |  |  |     //
 | 
					
						
							|  |  |  |     // checks for the syntax
 | 
					
						
							|  |  |  |     //
 | 
					
						
							| 
									
										
										
										
											2012-09-12 12:10:37 +02:00
										 |  |  |     void parse_data(); | 
					
						
							|  |  |  |     void parse(); | 
					
						
							| 
									
										
										
										
											2012-02-03 13:50:04 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     //
 | 
					
						
							|  |  |  |     // checks for the semantic
 | 
					
						
							|  |  |  |     //
 | 
					
						
							|  |  |  |     void inlineNamespaceLookup(); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-12 12:10:37 +02:00
										 |  |  | void tst_cxx11::parse_data() | 
					
						
							| 
									
										
										
										
											2012-02-03 13:50:04 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     QTest::addColumn<QString>("file"); | 
					
						
							|  |  |  |     QTest::addColumn<QString>("errorFile"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     QTest::newRow("inlineNamespace.1") << "inlineNamespace.1.cpp" << "inlineNamespace.1.errors.txt"; | 
					
						
							| 
									
										
										
										
											2012-09-12 12:10:37 +02:00
										 |  |  |     QTest::newRow("staticAssert.1") << "staticAssert.1.cpp" << "staticAssert.1.errors.txt"; | 
					
						
							|  |  |  |     QTest::newRow("noExcept.1") << "noExcept.1.cpp" << "noExcept.1.errors.txt"; | 
					
						
							|  |  |  |     QTest::newRow("braceInitializers.1") << "braceInitializers.1.cpp" << "braceInitializers.1.errors.txt"; | 
					
						
							| 
									
										
										
										
											2012-09-17 09:58:09 +02:00
										 |  |  |     QTest::newRow("braceInitializers.2") << "braceInitializers.2.cpp" << ""; | 
					
						
							| 
									
										
										
										
											2012-09-19 10:26:07 +02:00
										 |  |  |     QTest::newRow("braceInitializers.3") << "braceInitializers.3.cpp" << ""; | 
					
						
							| 
									
										
										
										
											2012-09-12 14:42:40 +02:00
										 |  |  |     QTest::newRow("defaultdeleteInitializer.1") << "defaultdeleteInitializer.1.cpp" << ""; | 
					
						
							| 
									
										
										
										
											2012-09-17 12:26:49 +02:00
										 |  |  |     QTest::newRow("refQualifier.1") << "refQualifier.1.cpp" << ""; | 
					
						
							| 
									
										
										
										
											2012-09-17 13:47:18 +02:00
										 |  |  |     QTest::newRow("alignofAlignas.1") << "alignofAlignas.1.cpp" << ""; | 
					
						
							| 
									
										
										
										
											2012-09-18 09:50:23 +02:00
										 |  |  |     QTest::newRow("rangeFor.1") << "rangeFor.1.cpp" << ""; | 
					
						
							| 
									
										
										
										
											2012-09-18 10:45:10 +02:00
										 |  |  |     QTest::newRow("aliasDecl.1") << "aliasDecl.1.cpp" << ""; | 
					
						
							| 
									
										
										
										
											2012-09-18 11:17:29 +02:00
										 |  |  |     QTest::newRow("enums.1") << "enums.1.cpp" << ""; | 
					
						
							| 
									
										
										
										
											2012-09-18 12:57:51 +02:00
										 |  |  |     QTest::newRow("templateGreaterGreater.1") << "templateGreaterGreater.1.cpp" << ""; | 
					
						
							| 
									
										
										
										
											2012-09-19 10:09:55 +02:00
										 |  |  |     QTest::newRow("packExpansion.1") << "packExpansion.1.cpp" << ""; | 
					
						
							| 
									
										
										
										
											2012-09-19 14:27:05 +02:00
										 |  |  |     QTest::newRow("declType.1") << "declType.1.cpp" << ""; | 
					
						
							| 
									
										
										
										
											2012-02-03 13:50:04 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-12 12:10:37 +02:00
										 |  |  | void tst_cxx11::parse() | 
					
						
							| 
									
										
										
										
											2012-02-03 13:50:04 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     QFETCH(QString, file); | 
					
						
							|  |  |  |     QFETCH(QString, errorFile); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     QByteArray errors; | 
					
						
							|  |  |  |     Document::Ptr doc = document(file, &errors); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (! qgetenv("DEBUG").isNull()) | 
					
						
							|  |  |  |         printf("%s\n", errors.constData()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     VERIFY_ERRORS(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // check the visibility of symbols declared inside inline namespaces
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | void tst_cxx11::inlineNamespaceLookup() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     Document::Ptr doc = document("inlineNamespace.1.cpp"); | 
					
						
							|  |  |  |     Snapshot snapshot; | 
					
						
							|  |  |  |     snapshot.insert(doc); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     LookupContext context(doc, snapshot); | 
					
						
							| 
									
										
										
										
											2013-03-20 13:48:20 +01:00
										 |  |  |     QSharedPointer<Control> control = context.bindings()->control(); | 
					
						
							| 
									
										
										
										
											2012-02-03 13:50:04 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     QList<LookupItem> results = context.lookup(control->identifier("foo"), doc->globalNamespace()); | 
					
						
							|  |  |  |     QCOMPARE(results.size(), 1); // the symbol is visible from the global scope
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | QTEST_APPLESS_MAIN(tst_cxx11) | 
					
						
							|  |  |  | #include "tst_cxx11.moc"
 |