/* ============================================================ * QupZilla - WebKit based browser * Copyright (C) 2013 David Rosca * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * ============================================================ */ #include "formcompletertest.h" #include "pageformcompleter.h" #include #include #include void FormCompleterTest::initTestCase() { view = new QWebView(); } void FormCompleterTest::cleanupTestCase() { delete view; } void FormCompleterTest::init() { view->setHtml(QString()); } void FormCompleterTest::completePageTest1() { // Basic test QByteArray data = "username=tst_username&password=tst_password"; QString html = "
" "" "" "" "
"; completeWithData(html, data); QCOMPARE(getElementByIdValue("id1").toString(), QString("tst_username")); QCOMPARE(getElementByIdValue("id2").toString(), QString("tst_password")); } void FormCompleterTest::completePageTest2() { // Real word test: GMail login // uses input type=email for username QByteArray data = "dsh=-821344601702946291&GALX=pAkf3B9TdCo&timeStmp=&secTok=" "&_utf8=%E2%98%83&bgresponse=%21A0IjdiuCmhg1wERY2iLkbgozxgIAAAAOUgAAA" "AcqAMaxqx-r1kXOOzeHkuDrRiOJvacFeSxGJ-pg_KQbwMJk3mBUCoZO2g602Uq4upHsM" "KVfjKRkuPCC0bVCaglP90VLBN8lqCQ5zLSrczVa-WpBFXlEZsKm5UXasE2ZZUQfDc1MI" "VQbDUviv7Ap54jx6vlTinen6UlxWW_wAvtLkpSO1hqrWnDSDmvFtbJZX61BlMFoHTPYk" "ijYnuCWzrHWsfKVI8uigtpClgwBTGovCWzuLrbFhG6txV5SokxdfNhbr3Vv-zO9xCw&E" "mail=tst_mail%40google.com&&Passwd=pass+%CB%87+word1&signIn=P%+se&Per" "sistentCookie=yes&rmShown=1"; QString html = "
" "" "" "" "" "" "" "" "" "" "" "" "" "
" "" "" "
" "" "" "" "
"; completeWithData(html, data); QCOMPARE(getElementByIdValue("Email").toString(), QString("tst_mail@google.com")); QCOMPARE(getElementByIdValue("Passwd").toString(), QString::fromUtf8("pass ˇ word1")); } void FormCompleterTest::completePageTest3() { // This test is mainly to test properly decoding special characters // in post data. QByteArray data = "user=%2B%C4%9B%C5%A1S+%CB%87+-+%2520+%2F+aa_&" "pass=%C3%BD%C5%BE%C4%9B%C5%A1%2B%C3%AD%C3%A1+das+%2B%2F+%5C+%C4%91"; QString html = "
" "" "" "" "
"; completeWithData(html, data); QCOMPARE(getElementByIdValue("id1").toString(), QString::fromUtf8("+ěšS ˇ - %20 / aa_")); QCOMPARE(getElementByIdValue("id2").toString(), QString::fromUtf8("ýžěš+íá das +/ \\ đ")); } void FormCompleterTest::extractFormTest1() { // Basic test QByteArray data = "username=tst_username&password=tst_password"; QString html = "
" "" "" "" "
"; PageFormData form = extractFormData(html, data); QVERIFY(form.found == true); QCOMPARE(form.username, QString("tst_username")); QCOMPARE(form.password, QString("tst_password")); } void FormCompleterTest::extractFormTest2() { // Test special characters QByteArray data = "username=tst_username&password=tst_password"; QString html = QString::fromUtf8("
" "" "" "" "
"); PageFormData form = extractFormData(html, data); QVERIFY(form.found == true); QCOMPARE(form.username, QString::fromUtf8("+ě ++ éí§`]|~đ11 +!:")); QCOMPARE(form.password, QString::fromUtf8("+ěš asn~đ°#&# |\€")); } void FormCompleterTest::completeWithData(const QString &html, const QByteArray &data) { view->setHtml(html); PageFormCompleter completer(view->page()); completer.completePage(data); } PageFormData FormCompleterTest::extractFormData(const QString &html, const QByteArray &data) { view->setHtml(html); PageFormCompleter completer(view->page()); return completer.extractFormData(data); } QVariant FormCompleterTest::getElementByIdValue(const QString &id) { QString source = QString("document.getElementById('%1').value").arg(id); return view->page()->mainFrame()->evaluateJavaScript(source); }