Add a test that checks the qZint generated barcodes are equal to those

generated by libzint. Whether or not those barcodes are correct should be
validated in the test suite for libzint, for qZint it's good enough to
produce the same printouts that libzint does, which isn't trivial, especially
as some API names have different meanings, such as qZint ```text```
is libzint ```data```. Props Alonso Schaich <alonso@freebsd.org>
This commit is contained in:
gitlost 2021-11-26 12:20:54 +00:00
parent f943893d6d
commit f5f363b22f

View File

@ -910,6 +910,54 @@ private slots:
QCOMPARE(cmd, expected_barcodeNames);
}
}
void qZintAndLibZintEqual_data()
{
QTest::addColumn<int>("symbology");
QTest::addColumn<int>("rotateAngles");
QTest::addColumn<QString>("text");
QTest::newRow("symbology=BARCODE_DATAMATRIX rotateAngles=0 text=1234") << BARCODE_DATAMATRIX << 0 << "1234";
QTest::newRow("symbology=BARCODE_QRCODE rotateAngles=0 text=Hello%20World") << BARCODE_QRCODE << 0 << "Hello%20World";
QTest::newRow("symbology=BARCODE_QRCODE rotateAngles=90 text=Hello%20World") << BARCODE_QRCODE << 90 << "Hello%20World";
QTest::newRow("symbology=BARCODE_QRCODE rotateAngles=180 text=Hello%20World") << BARCODE_QRCODE << 180 << "Hello%20World";
QTest::newRow("symbology=BARCODE_QRCODE rotateAngles=270 text=Hello%20World") << BARCODE_QRCODE << 270 << "Hello%20World";
}
void qZintAndLibZintEqual()
{
QFETCH(int, symbology);
QFETCH(int, rotateAngles);
QFETCH(QString, text);
QString fileName("test_qZintAndLibZintEqual_%1.gif");
QString fileNameForLibZint(fileName.arg("libZint"));
QString fileNameForQZint(fileName.arg("qZint"));
Zint::QZint bc;
QSharedPointer<zint_symbol> symbol(ZBarcode_Create(), ZBarcode_Delete);
bc.setSymbol(symbology);
symbol->symbology = symbology;
bc.setText(text);
bc.setRotateAngleValue(rotateAngles);
qstrcpy(symbol->outfile, qUtf8Printable(fileNameForLibZint));
bc.save_to_file(fileNameForQZint);
ZBarcode_Encode_and_Print(symbol.data(), reinterpret_cast<const unsigned char*>(qUtf8Printable(text)), 0, rotateAngles);
QImage imageWrittenByVanilla(fileNameForLibZint);
QImage imageWrittenByQZint(fileNameForQZint);
QCOMPARE(imageWrittenByQZint.isNull(), false);
QCOMPARE(imageWrittenByVanilla.isNull(), false);
QCOMPARE(imageWrittenByQZint == imageWrittenByVanilla, true);
QFile::remove(fileNameForLibZint);
QFile::remove(fileNameForQZint);
}
};
QTEST_MAIN(TestQZint)