2020-03-26 04:40:13 +13:00
|
|
|
/*
|
|
|
|
libzint - the open source barcode library
|
Add multiple segments support for AZTEC, CODEONE, DATAMATRIX, DOTCODE,
GRIDMATRIX, HANXIN, MAXICODE, MICROPDF417, PDF417, QRCODE, RMQR, ULTRA
RMQR: fix ECI encoding (wrong bit length for indicator)
MICROQR: check versions M1 and M2 for allowed characters so as to give
better error messages
DOTCODE: some small optimizations
common.c: add is_chr(), segs_length(), segs_cpy()
CODEONE/CODE128/DOTCODE/GRIDMATRIX/HANXIN/MAXICODE/QRCODE/ULTRA: add
namespace prefixes to static funcs/data
includes: use Z_ prefix, unuse double underscore prefixes (guard defines)
manual.txt: compress some tables using double/treble column sets
2022-05-10 06:50:50 +12:00
|
|
|
Copyright (C) 2020-2022 Robin Stuart <rstuart114@gmail.com>
|
2020-03-26 04:40:13 +13:00
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
|
|
|
|
1. Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in the
|
|
|
|
documentation and/or other materials provided with the distribution.
|
|
|
|
3. Neither the name of the project nor the names of its contributors
|
|
|
|
may be used to endorse or promote products derived from this software
|
|
|
|
without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
|
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
|
|
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
SUCH DAMAGE.
|
|
|
|
*/
|
2022-06-25 01:38:48 +12:00
|
|
|
/* SPDX-License-Identifier: BSD-3-Clause */
|
2020-03-26 04:40:13 +13:00
|
|
|
|
|
|
|
#include "testcommon.h"
|
|
|
|
|
2022-09-13 06:26:04 +12:00
|
|
|
static void test_large(const testCtx *const p_ctx) {
|
|
|
|
int debug = p_ctx->debug;
|
2020-06-05 05:45:25 +12:00
|
|
|
|
|
|
|
struct item {
|
|
|
|
int symbology;
|
2020-10-04 10:51:08 +13:00
|
|
|
char *pattern;
|
2020-06-05 05:45:25 +12:00
|
|
|
int length;
|
|
|
|
int ret;
|
|
|
|
int expected_rows;
|
|
|
|
int expected_width;
|
|
|
|
};
|
2022-09-13 06:26:04 +12:00
|
|
|
/* s/\/\*[ 0-9]*\*\//\=printf("\/\*%3d*\/", line(".") - line("'<")): */
|
2020-06-05 05:45:25 +12:00
|
|
|
struct item data[] = {
|
|
|
|
/* 0*/ { BARCODE_AUSPOST, "1", 23, 0, 3, 133 },
|
|
|
|
/* 1*/ { BARCODE_AUSPOST, "1", 24, ZINT_ERROR_TOO_LONG, -1, -1 },
|
|
|
|
/* 2*/ { BARCODE_AUSPOST, "1", 18, 0, 3, 133 },
|
|
|
|
/* 3*/ { BARCODE_AUSPOST, "1", 19, ZINT_ERROR_TOO_LONG, -1, -1 },
|
|
|
|
/* 4*/ { BARCODE_AUSPOST, "1", 16, 0, 3, 103 },
|
|
|
|
/* 5*/ { BARCODE_AUSPOST, "1", 17, ZINT_ERROR_TOO_LONG, -1, -1 },
|
|
|
|
/* 6*/ { BARCODE_AUSPOST, "1", 13, 0, 3, 103 },
|
|
|
|
/* 7*/ { BARCODE_AUSPOST, "1", 14, ZINT_ERROR_TOO_LONG, -1, -1 },
|
|
|
|
/* 8*/ { BARCODE_AUSPOST, "1", 8, 0, 3, 73 },
|
|
|
|
/* 9*/ { BARCODE_AUSPOST, "1", 9, ZINT_ERROR_TOO_LONG, -1, -1 },
|
|
|
|
/* 10*/ { BARCODE_AUSREPLY, "1", 8, 0, 3, 73 },
|
|
|
|
/* 11*/ { BARCODE_AUSREPLY, "1", 9, ZINT_ERROR_TOO_LONG, -1, -1 },
|
|
|
|
/* 12*/ { BARCODE_AUSROUTE, "1", 8, 0, 3, 73 },
|
|
|
|
/* 13*/ { BARCODE_AUSROUTE, "1", 9, ZINT_ERROR_TOO_LONG, -1, -1 },
|
|
|
|
/* 14*/ { BARCODE_AUSREDIRECT, "1", 8, 0, 3, 73 },
|
|
|
|
/* 15*/ { BARCODE_AUSREDIRECT, "1", 9, ZINT_ERROR_TOO_LONG, -1, -1 },
|
|
|
|
};
|
|
|
|
int data_size = ARRAY_SIZE(data);
|
2021-06-24 02:00:49 +12:00
|
|
|
int i, length, ret;
|
|
|
|
struct zint_symbol *symbol;
|
2020-06-05 05:45:25 +12:00
|
|
|
|
|
|
|
char data_buf[64];
|
|
|
|
|
2021-06-24 02:00:49 +12:00
|
|
|
testStart("test_large");
|
|
|
|
|
|
|
|
for (i = 0; i < data_size; i++) {
|
2020-06-05 05:45:25 +12:00
|
|
|
|
2022-09-13 06:26:04 +12:00
|
|
|
if (testContinue(p_ctx, i)) continue;
|
2020-06-05 05:45:25 +12:00
|
|
|
|
2021-06-24 02:00:49 +12:00
|
|
|
symbol = ZBarcode_Create();
|
2020-06-05 05:45:25 +12:00
|
|
|
assert_nonnull(symbol, "Symbol not created\n");
|
|
|
|
|
|
|
|
testUtilStrCpyRepeat(data_buf, data[i].pattern, data[i].length);
|
|
|
|
assert_equal(data[i].length, (int) strlen(data_buf), "i:%d length %d != strlen(data_buf) %d\n", i, data[i].length, (int) strlen(data_buf));
|
|
|
|
|
2021-06-24 02:00:49 +12:00
|
|
|
length = testUtilSetSymbol(symbol, data[i].symbology, -1 /*input_mode*/, -1 /*eci*/, -1 /*option_1*/, -1, -1, -1 /*output_options*/, data_buf, data[i].length, debug);
|
2020-06-05 05:45:25 +12:00
|
|
|
|
2020-10-04 10:51:08 +13:00
|
|
|
ret = ZBarcode_Encode(symbol, (unsigned char *) data_buf, length);
|
2020-06-05 05:45:25 +12:00
|
|
|
assert_equal(ret, data[i].ret, "i:%d ZBarcode_Encode ret %d != %d (%s)\n", i, ret, data[i].ret, symbol->errtxt);
|
|
|
|
|
2021-02-23 13:01:15 +13:00
|
|
|
if (ret < ZINT_ERROR) {
|
2020-06-05 05:45:25 +12:00
|
|
|
assert_equal(symbol->rows, data[i].expected_rows, "i:%d symbol->rows %d != %d\n", i, symbol->rows, data[i].expected_rows);
|
|
|
|
assert_equal(symbol->width, data[i].expected_width, "i:%d symbol->width %d != %d\n", i, symbol->width, data[i].expected_width);
|
|
|
|
}
|
|
|
|
|
|
|
|
ZBarcode_Delete(symbol);
|
|
|
|
}
|
|
|
|
|
|
|
|
testFinish();
|
|
|
|
}
|
|
|
|
|
2022-09-13 06:26:04 +12:00
|
|
|
static void test_hrt(const testCtx *const p_ctx) {
|
|
|
|
int debug = p_ctx->debug;
|
2020-06-05 05:45:25 +12:00
|
|
|
|
|
|
|
struct item {
|
|
|
|
int symbology;
|
2020-10-04 10:51:08 +13:00
|
|
|
char *data;
|
2020-06-05 05:45:25 +12:00
|
|
|
|
2020-10-04 10:51:08 +13:00
|
|
|
char *expected;
|
2020-06-05 05:45:25 +12:00
|
|
|
};
|
2022-09-13 06:26:04 +12:00
|
|
|
/* s/\/\*[ 0-9]*\*\//\=printf("\/\*%3d*\/", line(".") - line("'<")): */
|
2020-06-05 05:45:25 +12:00
|
|
|
struct item data[] = {
|
2022-09-13 06:26:04 +12:00
|
|
|
/* 0*/ { BARCODE_AUSPOST, "12345678901234567890123", "" }, /* None */
|
2020-06-05 05:45:25 +12:00
|
|
|
};
|
|
|
|
int data_size = ARRAY_SIZE(data);
|
2021-06-24 02:00:49 +12:00
|
|
|
int i, length, ret;
|
|
|
|
struct zint_symbol *symbol;
|
2020-06-05 05:45:25 +12:00
|
|
|
|
2021-06-24 02:00:49 +12:00
|
|
|
testStart("test_hrt");
|
|
|
|
|
|
|
|
for (i = 0; i < data_size; i++) {
|
2020-06-05 05:45:25 +12:00
|
|
|
|
2022-09-13 06:26:04 +12:00
|
|
|
if (testContinue(p_ctx, i)) continue;
|
2020-06-05 05:45:25 +12:00
|
|
|
|
2021-06-24 02:00:49 +12:00
|
|
|
symbol = ZBarcode_Create();
|
2020-06-05 05:45:25 +12:00
|
|
|
assert_nonnull(symbol, "Symbol not created\n");
|
|
|
|
|
2021-06-24 02:00:49 +12:00
|
|
|
length = testUtilSetSymbol(symbol, data[i].symbology, -1 /*input_mode*/, -1 /*eci*/, -1 /*option_1*/, -1, -1, -1 /*output_options*/, data[i].data, -1, debug);
|
2020-06-05 05:45:25 +12:00
|
|
|
|
2020-10-04 10:51:08 +13:00
|
|
|
ret = ZBarcode_Encode(symbol, (unsigned char *) data[i].data, length);
|
2020-06-05 05:45:25 +12:00
|
|
|
assert_zero(ret, "i:%d ZBarcode_Encode ret %d != 0 %s\n", i, ret, symbol->errtxt);
|
|
|
|
|
2020-10-04 10:51:08 +13:00
|
|
|
assert_zero(strcmp((char *) symbol->text, data[i].expected), "i:%d strcmp(%s, %s) != 0\n", i, symbol->text, data[i].expected);
|
2020-06-05 05:45:25 +12:00
|
|
|
|
|
|
|
ZBarcode_Delete(symbol);
|
|
|
|
}
|
|
|
|
|
|
|
|
testFinish();
|
|
|
|
}
|
|
|
|
|
2022-09-13 06:26:04 +12:00
|
|
|
static void test_input(const testCtx *const p_ctx) {
|
|
|
|
int debug = p_ctx->debug;
|
2020-06-05 05:45:25 +12:00
|
|
|
|
|
|
|
struct item {
|
|
|
|
int symbology;
|
2020-10-04 10:51:08 +13:00
|
|
|
char *data;
|
2020-06-05 05:45:25 +12:00
|
|
|
int ret;
|
|
|
|
int expected_rows;
|
|
|
|
int expected_width;
|
2021-07-07 06:53:31 +12:00
|
|
|
char *expected_errtxt;
|
2020-06-05 05:45:25 +12:00
|
|
|
};
|
2022-09-13 06:26:04 +12:00
|
|
|
/* s/\/\*[ 0-9]*\*\//\=printf("\/\*%3d*\/", line(".") - line("'<")): */
|
2020-06-05 05:45:25 +12:00
|
|
|
struct item data[] = {
|
2021-07-07 06:53:31 +12:00
|
|
|
/* 0*/ { BARCODE_AUSPOST, "12345678", 0, 3, 73, "" },
|
|
|
|
/* 1*/ { BARCODE_AUSPOST, "1234567A", ZINT_ERROR_INVALID_DATA, -1, -1, "Error 405: Invalid character in DPID (first 8 characters) (digits only)" },
|
|
|
|
/* 2*/ { BARCODE_AUSPOST, "12345678ABcd#", 0, 3, 103, "" },
|
|
|
|
/* 3*/ { BARCODE_AUSPOST, "12345678ABcd!", ZINT_ERROR_INVALID_DATA, -1, -1, "Error 404: Invalid character in data (alphanumerics, space and \"#\" only)" },
|
|
|
|
/* 4*/ { BARCODE_AUSPOST, "12345678ABcd#", 0, 3, 103, "" },
|
|
|
|
/* 5*/ { BARCODE_AUSPOST, "1234567890123456", 0, 3, 103, "" },
|
Add compliant height, using ZINT_COMPLIANT_HEIGHT flag for back-compatibility
Rename barcode funcs to same as BARCODE_XXX name
library: barcode funcs array for dispatch, used for ZBarcode_ValidID() also
general: change is_sane() comparison to nonzero from ZINT_ERROR_INVALID_OPTION
MAILMARK: fuller error messages
CODABAR: add option to show check character in HRT
zint.h: use 0xNNNN for OR-able defines
GUI: add guard descent height reset button, add Zint version to window title,
static get_zint_version() method, use QStringLiteral (QSL shorthand),
use SIGNAL(toggled()), add errtxt "popup" and status bar, add icons,
add saveAs shortcut, add main menu, context menus and actions, add help,
reset_view() -> reset_colours(), add copy to clipboard as EMF/GIF/PNG/TIF,
lessen triggering of update_preview(), shorten names of getters/setters,
simplify/shorten some update_preview() logic in switch,
CODEONE disable structapp for Version S
qzint.cpp: add on_errored signal, add missing getters, add test
2021-10-09 12:13:39 +13:00
|
|
|
/* 6*/ { BARCODE_AUSPOST, "123456789012345A", ZINT_ERROR_INVALID_DATA, -1, -1, "Error 402: Invalid character in data (digits only for length 16)" },
|
2022-09-13 06:26:04 +12:00
|
|
|
/* 7*/ { BARCODE_AUSPOST, "12345678ABCDefgh #", 0, 3, 133, "" }, /* Length 18 */
|
2021-07-07 06:53:31 +12:00
|
|
|
/* 8*/ { BARCODE_AUSPOST, "12345678901234567890123", 0, 3, 133, "" },
|
Add compliant height, using ZINT_COMPLIANT_HEIGHT flag for back-compatibility
Rename barcode funcs to same as BARCODE_XXX name
library: barcode funcs array for dispatch, used for ZBarcode_ValidID() also
general: change is_sane() comparison to nonzero from ZINT_ERROR_INVALID_OPTION
MAILMARK: fuller error messages
CODABAR: add option to show check character in HRT
zint.h: use 0xNNNN for OR-able defines
GUI: add guard descent height reset button, add Zint version to window title,
static get_zint_version() method, use QStringLiteral (QSL shorthand),
use SIGNAL(toggled()), add errtxt "popup" and status bar, add icons,
add saveAs shortcut, add main menu, context menus and actions, add help,
reset_view() -> reset_colours(), add copy to clipboard as EMF/GIF/PNG/TIF,
lessen triggering of update_preview(), shorten names of getters/setters,
simplify/shorten some update_preview() logic in switch,
CODEONE disable structapp for Version S
qzint.cpp: add on_errored signal, add missing getters, add test
2021-10-09 12:13:39 +13:00
|
|
|
/* 9*/ { BARCODE_AUSPOST, "1234567890123456789012A", ZINT_ERROR_INVALID_DATA, -1, -1, "Error 406: Invalid character in data (digits only for length 23)" },
|
2022-09-13 06:26:04 +12:00
|
|
|
/* 10*/ { BARCODE_AUSPOST, "1234567", ZINT_ERROR_TOO_LONG, -1, -1, "Error 401: Input wrong length (8, 13, 16, 18 or 23 characters only)" }, /* No leading zeroes added */
|
2021-07-07 06:53:31 +12:00
|
|
|
/* 11*/ { BARCODE_AUSREPLY, "12345678", 0, 3, 73, "" },
|
2022-09-13 06:26:04 +12:00
|
|
|
/* 12*/ { BARCODE_AUSREPLY, "1234567", 0, 3, 73, "" }, /* Leading zeroes added */
|
2022-06-25 01:38:48 +12:00
|
|
|
/* 13*/ { BARCODE_AUSREPLY, "123456789", ZINT_ERROR_TOO_LONG, -1, -1, "Error 403: Input too long (8 character maximum)" },
|
2021-07-07 06:53:31 +12:00
|
|
|
/* 14*/ { BARCODE_AUSROUTE, "123456", 0, 3, 73, "" },
|
|
|
|
/* 15*/ { BARCODE_AUSROUTE, "12345", 0, 3, 73, "" },
|
2022-06-25 01:38:48 +12:00
|
|
|
/* 16*/ { BARCODE_AUSROUTE, "123456789", ZINT_ERROR_TOO_LONG, -1, -1, "Error 403: Input too long (8 character maximum)" },
|
2021-07-07 06:53:31 +12:00
|
|
|
/* 17*/ { BARCODE_AUSREDIRECT, "1234", 0, 3, 73, "" },
|
|
|
|
/* 18*/ { BARCODE_AUSREDIRECT, "123", 0, 3, 73, "" },
|
|
|
|
/* 19*/ { BARCODE_AUSREDIRECT, "0", 0, 3, 73, "" },
|
2022-06-25 01:38:48 +12:00
|
|
|
/* 20*/ { BARCODE_AUSREDIRECT, "123456789", ZINT_ERROR_TOO_LONG, -1, -1, "Error 403: Input too long (8 character maximum)" },
|
2020-06-05 05:45:25 +12:00
|
|
|
};
|
|
|
|
int data_size = ARRAY_SIZE(data);
|
2021-06-24 02:00:49 +12:00
|
|
|
int i, length, ret;
|
|
|
|
struct zint_symbol *symbol;
|
2020-06-05 05:45:25 +12:00
|
|
|
|
2021-06-24 02:00:49 +12:00
|
|
|
testStart("test_input");
|
|
|
|
|
|
|
|
for (i = 0; i < data_size; i++) {
|
2020-06-05 05:45:25 +12:00
|
|
|
|
2022-09-13 06:26:04 +12:00
|
|
|
if (testContinue(p_ctx, i)) continue;
|
2020-06-05 05:45:25 +12:00
|
|
|
|
2021-06-24 02:00:49 +12:00
|
|
|
symbol = ZBarcode_Create();
|
2020-06-05 05:45:25 +12:00
|
|
|
assert_nonnull(symbol, "Symbol not created\n");
|
|
|
|
|
2021-06-24 02:00:49 +12:00
|
|
|
length = testUtilSetSymbol(symbol, data[i].symbology, -1 /*input_mode*/, -1 /*eci*/, -1 /*option_1*/, -1, -1, -1 /*output_options*/, data[i].data, -1, debug);
|
2020-06-05 05:45:25 +12:00
|
|
|
|
2020-10-04 10:51:08 +13:00
|
|
|
ret = ZBarcode_Encode(symbol, (unsigned char *) data[i].data, length);
|
2020-06-05 05:45:25 +12:00
|
|
|
assert_equal(ret, data[i].ret, "i:%d ZBarcode_Encode ret %d != %d (%s)\n", i, ret, data[i].ret, symbol->errtxt);
|
|
|
|
|
2021-02-23 13:01:15 +13:00
|
|
|
if (ret < ZINT_ERROR) {
|
2020-06-05 05:45:25 +12:00
|
|
|
assert_equal(symbol->rows, data[i].expected_rows, "i:%d symbol->rows %d != %d\n", i, symbol->rows, data[i].expected_rows);
|
|
|
|
assert_equal(symbol->width, data[i].expected_width, "i:%d symbol->width %d != %d\n", i, symbol->width, data[i].expected_width);
|
|
|
|
}
|
2021-07-07 06:53:31 +12:00
|
|
|
assert_zero(strcmp(symbol->errtxt, data[i].expected_errtxt), "i:%d strcmp(%s, %s) != 0\n", i, symbol->errtxt, data[i].expected_errtxt);
|
2020-06-05 05:45:25 +12:00
|
|
|
|
|
|
|
ZBarcode_Delete(symbol);
|
|
|
|
}
|
|
|
|
|
|
|
|
testFinish();
|
|
|
|
}
|
|
|
|
|
2022-09-13 06:26:04 +12:00
|
|
|
/* Australia Post Customer Barcoding Technical Specifications (Revised 3 Aug 2012) "AusPost Tech Specs"
|
|
|
|
https://auspost.com.au/content/dam/auspost_corp/media/documents/customer-barcode-technical-specifications-aug2012.pdf
|
|
|
|
Australia Post A Guide To Printing the 4-State Barcode (Revised 16 March 2012) "AusPost Guide"
|
|
|
|
https://auspost.com.au/content/dam/auspost_corp/media/documents/a-guide-to-printing-the-4state-barcode-v31-mar2012.pdf
|
|
|
|
*/
|
|
|
|
static void test_encode(const testCtx *const p_ctx) {
|
|
|
|
int debug = p_ctx->debug;
|
2020-06-05 05:45:25 +12:00
|
|
|
|
|
|
|
struct item {
|
|
|
|
int symbology;
|
2020-10-04 10:51:08 +13:00
|
|
|
char *data;
|
2020-06-05 05:45:25 +12:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
int expected_rows;
|
|
|
|
int expected_width;
|
|
|
|
char *comment;
|
|
|
|
char *expected;
|
|
|
|
};
|
|
|
|
struct item data[] = {
|
2022-06-25 01:38:48 +12:00
|
|
|
/* 0*/ { BARCODE_AUSPOST, "96184209", 0, 3, 73, "AusPost Tech Specs Diagram 1; verified manually against TEC-IT",
|
2020-10-01 00:19:12 +13:00
|
|
|
"1000101010100010001010100000101010001010001000001010000010001000001000100"
|
|
|
|
"1010101010101010101010101010101010101010101010101010101010101010101010101"
|
|
|
|
"0000100010000010101010001010000010101010001000101010001000100010000010000"
|
|
|
|
},
|
2022-06-25 01:38:48 +12:00
|
|
|
/* 1*/ { BARCODE_AUSPOST, "39549554", 0, 3, 73, "AusPost Guide Figure 3, same; verified manually against TEC-IT",
|
|
|
|
"1000101010101010001010001010001010001000101000001000101010001010000000100"
|
|
|
|
"1010101010101010101010101010101010101010101010101010101010101010101010101"
|
|
|
|
"0000100010000010001000100000001000100010000000000010001000000000001010000"
|
|
|
|
},
|
|
|
|
/* 2*/ { BARCODE_AUSPOST, "56439111ABA 9", 0, 3, 103, "AusPost Guide Figure 4, same; verified manually against TEC-IT",
|
|
|
|
"1000100000101000001010101010001010101010101010101010101010101010100000000000001010100010101010000010100"
|
|
|
|
"1010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101"
|
|
|
|
"0000001000100010101000000010001010001000100010101010100010101010100000101000000010001000101010000000000"
|
|
|
|
},
|
|
|
|
/* 3*/ { BARCODE_AUSPOST, "3221132412345678", 0, 3, 103, "59 Custom 2 N encoding",
|
2020-10-01 00:19:12 +13:00
|
|
|
"1000100000101010100010001010101010101000101010101000101010101000001000100000101000000000001000000000100"
|
|
|
|
"1010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101"
|
|
|
|
"0000001000100010101010101000100000101010000010001010001000000010101010001010000010001010101000100000000"
|
|
|
|
},
|
2022-06-25 01:38:48 +12:00
|
|
|
/* 4*/ { BARCODE_AUSPOST, "32211324Ab #2", 0, 3, 103, "59 Custom 2 C encoding",
|
2020-10-01 00:19:12 +13:00
|
|
|
"1000100000101010100010001010101010101000101010101010001010100010100000101000100000000010100000100010100"
|
|
|
|
"1010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101"
|
|
|
|
"0000001000100010101010101000100000101010000010101010001010100010000000100000001000101010000010000000000"
|
|
|
|
},
|
2022-06-25 01:38:48 +12:00
|
|
|
/* 5*/ { BARCODE_AUSPOST, "32211324123456789012345", 0, 3, 133, "62 Custom 3 N encoding",
|
2020-10-01 00:19:12 +13:00
|
|
|
"1000001010001010100010001010101010101000101010101000101010101000001000100000001010101010100010101010100000100000100010101010100010100"
|
2020-06-05 05:45:25 +12:00
|
|
|
"1010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101"
|
2020-10-01 00:19:12 +13:00
|
|
|
"0000101010100010101010101000100000101010000010001010001000000010101010001010001010101000101000100000001000001010000010001010100010000"
|
2020-06-05 05:45:25 +12:00
|
|
|
},
|
2022-06-25 01:38:48 +12:00
|
|
|
/* 6*/ { BARCODE_AUSPOST, "32211324aBCd#F hIz", 0, 3, 133, "62 Custom 3 C encoding",
|
2020-10-01 00:19:12 +13:00
|
|
|
"1000001010001010100010001010101010101000101010000010101010100010000010100010100010100010000010000000000000100010100010101010000000100"
|
|
|
|
"1010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101"
|
|
|
|
"0000101010100010101010101000100000101010000010100010100010101010001010000010001010100000100010101000000000101000001010100000000010000"
|
|
|
|
},
|
2022-06-25 01:38:48 +12:00
|
|
|
/* 7*/ { BARCODE_AUSPOST, "12345678DEGHJKLMNO", 0, 3, 133, "62 Custom 3 C encoding GDSET 1st part",
|
2021-10-21 11:05:30 +13:00
|
|
|
"1000001010001010100010101010100000100010000010101010101010001010001010101010101010100010101010101010100000001010000010000000000010100"
|
|
|
|
"1010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101"
|
|
|
|
"0000101010101000101000100000001010101000101010001010000010101010100000101000100000101000001000000000001000001010000010001010001010000"
|
|
|
|
},
|
2022-06-25 01:38:48 +12:00
|
|
|
/* 8*/ { BARCODE_AUSPOST, "23456789PQRSTUVWXY", 0, 3, 133, "62 Custom 3 C encoding GDSET 2nd part",
|
2021-10-21 11:05:30 +13:00
|
|
|
"1000001010001000101010101000001000100000001010001010001010000000101000101000100000101000101000100000001000101000101010101000101010100"
|
|
|
|
"1010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101"
|
|
|
|
"0000101010101010001000000010101010001010001000101000100000101010101010100010101010001010000010001010101000000010001000001010101000000"
|
|
|
|
},
|
2022-06-25 01:38:48 +12:00
|
|
|
/* 9*/ { BARCODE_AUSPOST, "34567890Zcefgijklm", 0, 3, 133, "62 Custom 3 C encoding GDSET 3rd part",
|
2021-10-21 11:05:30 +13:00
|
|
|
"1000001010001010101010000010001000000010101000001010001010000010100010100010001010001010000010000000100000101000100000001010001010100"
|
|
|
|
"1010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101"
|
|
|
|
"0000101010100010000000101010100010100010101010100010000010000000100000000000001000000000001000000010100000101000000010101010100010000"
|
|
|
|
},
|
2022-06-25 01:38:48 +12:00
|
|
|
/* 10*/ { BARCODE_AUSPOST, "12345678lnopqrstuv", 0, 3, 133, "62 Custom 3 C encoding GDSET 4th part",
|
2021-10-21 11:05:30 +13:00
|
|
|
"1000001010001010100010101010100000100010000010000000100000000000001000001000000000000000100000100000000000001010001010101000000010100"
|
|
|
|
"1010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101"
|
|
|
|
"0000101010101000101000100000001010101000101000000010000010100010001010000010001010000000100000000000100000100000001010001000100000000"
|
|
|
|
},
|
2022-06-25 01:38:48 +12:00
|
|
|
/* 11*/ { BARCODE_AUSPOST, "09876543wxy# ", 0, 3, 103, "59 Custom 2 C encoding GDSET 5th part",
|
2021-10-21 11:05:30 +13:00
|
|
|
"1000100000101010001000000010001010001010101000001000001000000010100010100000100010000000000010100010100"
|
|
|
|
"1010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101"
|
|
|
|
"0000001000101010001010101000101000100000001000001000000000001010000010100000001010001000001000100000000"
|
|
|
|
},
|
2022-06-25 01:38:48 +12:00
|
|
|
/* 12*/ { BARCODE_AUSREPLY, "12345678", 0, 3, 73, "Verified manually against tec-it",
|
2020-06-05 05:45:25 +12:00
|
|
|
"1000101010001010100010101010100000100010000000001000001000000000100010100"
|
|
|
|
"1010101010101010101010101010101010101010101010101010101010101010101010101"
|
|
|
|
"0000000000101000101000100000001010101000101000000000100010101000101000000"
|
|
|
|
},
|
2022-06-25 01:38:48 +12:00
|
|
|
/* 13*/ { BARCODE_AUSROUTE, "34567890", 0, 3, 73, "Verified manually against tec-it",
|
2020-06-05 05:45:25 +12:00
|
|
|
"1000000000101010101010000010001000000010101000100010101010000000101000100"
|
|
|
|
"1010101010101010101010101010101010101010101010101010101010101010101010101"
|
|
|
|
"0000101010000010000000101010100010100010101000100010101010001010001000000"
|
|
|
|
},
|
2022-06-25 01:38:48 +12:00
|
|
|
/* 14*/ { BARCODE_AUSREDIRECT, "98765432", 0, 3, 73, "Verified manually against tec-it",
|
2020-06-05 05:45:25 +12:00
|
|
|
"1000001010000010000000100010100010101010100000101010101000100010100010100"
|
|
|
|
"1010101010101010101010101010101010101010101010101010101010101010101010101"
|
|
|
|
"0000001010100010101010001010001000000010101000000000001010101000001010000"
|
|
|
|
},
|
|
|
|
};
|
|
|
|
int data_size = ARRAY_SIZE(data);
|
2021-06-24 02:00:49 +12:00
|
|
|
int i, length, ret;
|
|
|
|
struct zint_symbol *symbol;
|
2020-06-05 05:45:25 +12:00
|
|
|
|
|
|
|
char escaped[1024];
|
2020-10-01 00:19:12 +13:00
|
|
|
char bwipp_buf[8192];
|
|
|
|
char bwipp_msg[1024];
|
2020-06-05 05:45:25 +12:00
|
|
|
|
2022-09-13 06:26:04 +12:00
|
|
|
int do_bwipp = (debug & ZINT_DEBUG_TEST_BWIPP) && testUtilHaveGhostscript(); /* Only do BWIPP test if asked, too slow otherwise */
|
2021-06-24 02:00:49 +12:00
|
|
|
|
|
|
|
testStart("test_encode");
|
|
|
|
|
|
|
|
for (i = 0; i < data_size; i++) {
|
2020-06-05 05:45:25 +12:00
|
|
|
|
2022-09-13 06:26:04 +12:00
|
|
|
if (testContinue(p_ctx, i)) continue;
|
2020-06-05 05:45:25 +12:00
|
|
|
|
2021-06-24 02:00:49 +12:00
|
|
|
symbol = ZBarcode_Create();
|
2020-06-05 05:45:25 +12:00
|
|
|
assert_nonnull(symbol, "Symbol not created\n");
|
|
|
|
|
2021-06-24 02:00:49 +12:00
|
|
|
length = testUtilSetSymbol(symbol, data[i].symbology, -1 /*input_mode*/, -1 /*eci*/, -1 /*option_1*/, -1, -1, -1 /*output_options*/, data[i].data, -1, debug);
|
2020-06-05 05:45:25 +12:00
|
|
|
|
2020-10-04 10:51:08 +13:00
|
|
|
ret = ZBarcode_Encode(symbol, (unsigned char *) data[i].data, length);
|
2020-06-05 05:45:25 +12:00
|
|
|
assert_equal(ret, data[i].ret, "i:%d ZBarcode_Encode ret %d != %d (%s)\n", i, ret, data[i].ret, symbol->errtxt);
|
|
|
|
|
2022-09-13 06:26:04 +12:00
|
|
|
if (p_ctx->generate) {
|
2020-06-05 05:45:25 +12:00
|
|
|
printf(" /*%3d*/ { %s, \"%s\", %s, %d, %d, \"%s\",\n",
|
|
|
|
i, testUtilBarcodeName(data[i].symbology), testUtilEscape(data[i].data, length, escaped, sizeof(escaped)),
|
|
|
|
testUtilErrorName(data[i].ret), symbol->rows, symbol->width, data[i].comment);
|
2021-02-23 13:01:15 +13:00
|
|
|
testUtilModulesPrint(symbol, " ", "\n");
|
2020-06-05 05:45:25 +12:00
|
|
|
printf(" },\n");
|
|
|
|
} else {
|
2021-02-23 13:01:15 +13:00
|
|
|
if (ret < ZINT_ERROR) {
|
2021-06-24 02:00:49 +12:00
|
|
|
int width, row;
|
|
|
|
|
2020-06-05 05:45:25 +12:00
|
|
|
assert_equal(symbol->rows, data[i].expected_rows, "i:%d symbol->rows %d != %d (%s)\n", i, symbol->rows, data[i].expected_rows, data[i].data);
|
|
|
|
assert_equal(symbol->width, data[i].expected_width, "i:%d symbol->width %d != %d (%s)\n", i, symbol->width, data[i].expected_width, data[i].data);
|
|
|
|
|
2020-10-01 00:19:12 +13:00
|
|
|
ret = testUtilModulesCmp(symbol, data[i].expected, &width, &row);
|
|
|
|
assert_zero(ret, "i:%d testUtilModulesCmp ret %d != 0 width %d row %d (%s)\n", i, ret, width, row, data[i].data);
|
|
|
|
|
2020-10-27 01:21:43 +13:00
|
|
|
if (do_bwipp && testUtilCanBwipp(i, symbol, -1, -1, -1, debug)) {
|
Add multiple segments support for AZTEC, CODEONE, DATAMATRIX, DOTCODE,
GRIDMATRIX, HANXIN, MAXICODE, MICROPDF417, PDF417, QRCODE, RMQR, ULTRA
RMQR: fix ECI encoding (wrong bit length for indicator)
MICROQR: check versions M1 and M2 for allowed characters so as to give
better error messages
DOTCODE: some small optimizations
common.c: add is_chr(), segs_length(), segs_cpy()
CODEONE/CODE128/DOTCODE/GRIDMATRIX/HANXIN/MAXICODE/QRCODE/ULTRA: add
namespace prefixes to static funcs/data
includes: use Z_ prefix, unuse double underscore prefixes (guard defines)
manual.txt: compress some tables using double/treble column sets
2022-05-10 06:50:50 +12:00
|
|
|
ret = testUtilBwipp(i, symbol, -1, -1, -1, data[i].data, length, NULL, bwipp_buf, sizeof(bwipp_buf), NULL);
|
2020-10-01 00:19:12 +13:00
|
|
|
assert_zero(ret, "i:%d %s testUtilBwipp ret %d != 0\n", i, testUtilBarcodeName(symbol->symbology), ret);
|
|
|
|
|
|
|
|
ret = testUtilBwippCmp(symbol, bwipp_msg, bwipp_buf, data[i].expected);
|
|
|
|
assert_zero(ret, "i:%d %s testUtilBwippCmp %d != 0 %s\n actual: %s\nexpected: %s\n",
|
|
|
|
i, testUtilBarcodeName(symbol->symbology), ret, bwipp_msg, bwipp_buf, data[i].expected);
|
2020-06-05 05:45:25 +12:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ZBarcode_Delete(symbol);
|
|
|
|
}
|
|
|
|
|
|
|
|
testFinish();
|
|
|
|
}
|
|
|
|
|
2022-09-13 06:26:04 +12:00
|
|
|
/* #181 Christian Hartlage OSS-Fuzz */
|
|
|
|
static void test_fuzz(const testCtx *const p_ctx) {
|
|
|
|
int debug = p_ctx->debug;
|
2020-05-06 09:28:25 +12:00
|
|
|
|
2020-03-26 04:40:13 +13:00
|
|
|
struct item {
|
|
|
|
int symbology;
|
2020-10-04 10:51:08 +13:00
|
|
|
char *data;
|
2020-03-26 04:40:13 +13:00
|
|
|
int length;
|
|
|
|
int ret;
|
|
|
|
};
|
2022-09-13 06:26:04 +12:00
|
|
|
/* s/\/\*[ 0-9]*\*\//\=printf("\/\*%3d*\/", line(".") - line("'<")): */
|
2020-03-26 04:40:13 +13:00
|
|
|
struct item data[] = {
|
|
|
|
/* 0*/ { BARCODE_AUSROUTE, "A\000\000\000", 4, ZINT_ERROR_INVALID_DATA },
|
|
|
|
/* 1*/ { BARCODE_AUSROUTE, "1\000\000\000", 4, ZINT_ERROR_INVALID_DATA },
|
|
|
|
/* 2*/ { BARCODE_AUSREPLY, "A\000\000\000", 4, ZINT_ERROR_INVALID_DATA },
|
|
|
|
/* 3*/ { BARCODE_AUSREPLY, "1\000\000\000", 4, ZINT_ERROR_INVALID_DATA },
|
|
|
|
/* 4*/ { BARCODE_AUSREDIRECT, "A\000\000\000", 4, ZINT_ERROR_INVALID_DATA },
|
|
|
|
/* 5*/ { BARCODE_AUSREDIRECT, "1\000\000\000", 4, ZINT_ERROR_INVALID_DATA },
|
|
|
|
};
|
2021-02-23 13:01:15 +13:00
|
|
|
int data_size = ARRAY_SIZE(data);
|
2021-06-24 02:00:49 +12:00
|
|
|
int i, length, ret;
|
|
|
|
struct zint_symbol *symbol;
|
|
|
|
|
|
|
|
testStart("test_fuzz");
|
2020-03-26 04:40:13 +13:00
|
|
|
|
2021-06-24 02:00:49 +12:00
|
|
|
for (i = 0; i < data_size; i++) {
|
2020-03-26 04:40:13 +13:00
|
|
|
|
2022-09-13 06:26:04 +12:00
|
|
|
if (testContinue(p_ctx, i)) continue;
|
2020-05-06 09:28:25 +12:00
|
|
|
|
2021-06-24 02:00:49 +12:00
|
|
|
symbol = ZBarcode_Create();
|
2020-03-26 04:40:13 +13:00
|
|
|
assert_nonnull(symbol, "Symbol not created\n");
|
|
|
|
|
2021-06-24 02:00:49 +12:00
|
|
|
length = testUtilSetSymbol(symbol, data[i].symbology, -1 /*input_mode*/, -1 /*eci*/, -1 /*option_1*/, -1, -1, -1 /*output_options*/, data[i].data, data[i].length, debug);
|
2020-03-26 04:40:13 +13:00
|
|
|
|
2020-10-04 10:51:08 +13:00
|
|
|
ret = ZBarcode_Encode(symbol, (unsigned char *) data[i].data, length);
|
2020-03-26 04:40:13 +13:00
|
|
|
assert_equal(ret, data[i].ret, "i:%d ZBarcode_Encode ret %d != %d (%s)\n", i, ret, data[i].ret, symbol->errtxt);
|
|
|
|
|
|
|
|
ZBarcode_Delete(symbol);
|
|
|
|
}
|
|
|
|
|
|
|
|
testFinish();
|
|
|
|
}
|
|
|
|
|
2020-05-06 09:28:25 +12:00
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
|
2022-09-13 06:26:04 +12:00
|
|
|
testFunction funcs[] = { /* name, func */
|
|
|
|
{ "test_large", test_large },
|
|
|
|
{ "test_hrt", test_hrt },
|
|
|
|
{ "test_input", test_input },
|
|
|
|
{ "test_encode", test_encode },
|
|
|
|
{ "test_fuzz", test_fuzz },
|
2020-05-06 09:28:25 +12:00
|
|
|
};
|
|
|
|
|
|
|
|
testRun(argc, argv, funcs, ARRAY_SIZE(funcs));
|
2020-03-26 04:40:13 +13:00
|
|
|
|
|
|
|
testReport();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
Add multiple segments support for AZTEC, CODEONE, DATAMATRIX, DOTCODE,
GRIDMATRIX, HANXIN, MAXICODE, MICROPDF417, PDF417, QRCODE, RMQR, ULTRA
RMQR: fix ECI encoding (wrong bit length for indicator)
MICROQR: check versions M1 and M2 for allowed characters so as to give
better error messages
DOTCODE: some small optimizations
common.c: add is_chr(), segs_length(), segs_cpy()
CODEONE/CODE128/DOTCODE/GRIDMATRIX/HANXIN/MAXICODE/QRCODE/ULTRA: add
namespace prefixes to static funcs/data
includes: use Z_ prefix, unuse double underscore prefixes (guard defines)
manual.txt: compress some tables using double/treble column sets
2022-05-10 06:50:50 +12:00
|
|
|
|
|
|
|
/* vim: set ts=4 sw=4 et : */
|