Remove mention of Trolltech in QHttp autotest.
authorJason McDonald <jason.mcdonald@nokia.com>
Wed, 21 Dec 2011 00:47:38 +0000 (10:47 +1000)
committerQt by Nokia <qt-info@nokia.com>
Wed, 28 Dec 2011 01:56:02 +0000 (02:56 +0100)
The data file named "trolltech" has nothing specific to Trolltech in its
contents.  Rename it to "testhtml".  The lack of a file extension is
intentional.

Task-number: QTBUG-19653
Change-Id: Idc5c5f4ffa447151e47f66ff7364f0fa8753a699
Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
tests/auto/network/access/qhttp/qhttp.pro
tests/auto/network/access/qhttp/testhtml [moved from tests/auto/network/access/qhttp/trolltech with 100% similarity]
tests/auto/network/access/qhttp/tst_qhttp.cpp

index d25b321..d672eb6 100644 (file)
@@ -10,7 +10,7 @@ wince*: {
     webFiles.path = webserver
     cgi.files = webserver/cgi-bin/*
     cgi.path = webserver/cgi-bin
-    addFiles.files = rfc3252.txt trolltech
+    addFiles.files = rfc3252.txt testhtml
     addFiles.path = .
     DEPLOYMENT += addFiles webFiles cgi
     DEFINES += SRCDIR=\\\"\\\"
index f6514ba..8adb0ca 100644 (file)
@@ -306,9 +306,9 @@ void tst_QHttp::get_data()
     QByteArray rfc3252 = file.readAll();
     file.close();
 
-    file.setFileName( SRCDIR "trolltech" );
+    file.setFileName( SRCDIR "testhtml" );
     QVERIFY( file.open( QIODevice::ReadOnly ) );
-    QByteArray trolltech = file.readAll();
+    QByteArray testhtml = file.readAll();
     file.close();
 
     // test the two get() modes in one routine
@@ -334,7 +334,7 @@ void tst_QHttp::get_data()
   // qt.nokia.com/doc uses transfer-encoding=chunked
     /* qt.nokia.com/doc no longer seams to be using chuncked encodig.
     QTest::newRow( QString("chunked_01_%1").arg(i).toLatin1() ) << QString("test.troll.no") << 80u
-           << QString("/") << 1 << 200 << trolltech << (bool)(i==1);
+            << QString("/") << 1 << 200 << testhtml << (bool)(i==1);
     */
        QTest::newRow( QString("chunked_02_%1").arg(i).toLatin1() ) << QtNetworkSettings::serverName() << 80u
            << QString("/qtest/cgi-bin/rfc.cgi") << 1 << 200 << rfc3252 << (bool)(i==1);