2019-09-02 08:09:47 +12:00
|
|
|
/*
|
|
|
|
libzint - the open source barcode library
|
|
|
|
Copyright (C) 2008-2019 Robin Stuart <rstuart114@gmail.com>
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <zint.h>
|
|
|
|
#include "testcommon.h"
|
|
|
|
|
2019-09-02 22:43:14 +12:00
|
|
|
//#define TEST_GENERATE_EXPECTED 1
|
2019-09-02 08:09:47 +12:00
|
|
|
|
|
|
|
static void test_best_supported_set(void)
|
|
|
|
{
|
|
|
|
testStart("");
|
|
|
|
|
|
|
|
int ret;
|
|
|
|
struct item {
|
|
|
|
int symbology;
|
|
|
|
unsigned char* data;
|
|
|
|
int ret;
|
|
|
|
float w;
|
|
|
|
float h;
|
|
|
|
int ret_render;
|
|
|
|
|
|
|
|
int expected_rows;
|
|
|
|
int expected_width;
|
|
|
|
unsigned char* expected;
|
|
|
|
};
|
|
|
|
struct item data[] = {
|
|
|
|
/* 0*/ { BARCODE_MAXICODE, "am.//ab,\x1CTA# z\r!", 0, 100, 100, 1, 33, 30, // TODO: Better data and verify expected
|
|
|
|
"111010000101111000111101010111"
|
|
|
|
"111110000000010100111000000000"
|
|
|
|
"110000101100110100111010101011"
|
|
|
|
"010101010101010101010101010100"
|
|
|
|
"000000000000000000000000000000"
|
|
|
|
"101010101010101010101010101000"
|
|
|
|
"010101010101010101010101010110"
|
|
|
|
"000000000000000000000000000000"
|
|
|
|
"101010101010101010101010101011"
|
|
|
|
"010101010111001100000101010110"
|
|
|
|
"000000001011000010000000000010"
|
|
|
|
"101010101100000000100110101010"
|
|
|
|
"010101001100000000101101010101"
|
|
|
|
"000000100000000000010000000010"
|
|
|
|
"101010110000000000010010101010"
|
|
|
|
"010101011000000000000101010110"
|
|
|
|
"000000001000000000001000000010"
|
|
|
|
"101010001000000000001010101000"
|
|
|
|
"010101010000000000001101010101"
|
|
|
|
"000000001100000000000000000010"
|
|
|
|
"101010110010000000010110101010"
|
|
|
|
"010101010100000001111001010100"
|
|
|
|
"000000001110110111111100000011"
|
|
|
|
"101010100110111101011010101010"
|
|
|
|
"010101010101010101010011101000"
|
|
|
|
"000000000000000000001101100000"
|
|
|
|
"101010101010101010100000100110"
|
|
|
|
"101001001101110001001011010000"
|
|
|
|
"100100110110001010011000011100"
|
|
|
|
"011011000001011011100100100110"
|
|
|
|
"111001100000101101000111001000"
|
|
|
|
"111100000110000011011101001110"
|
|
|
|
"010100101001110111101010110010"
|
|
|
|
},
|
|
|
|
};
|
|
|
|
int data_size = sizeof(data) / sizeof(struct item);
|
|
|
|
|
|
|
|
for (int i = 0; i < data_size; i++) {
|
|
|
|
|
|
|
|
struct zint_symbol* symbol = ZBarcode_Create();
|
|
|
|
assert_nonnull(symbol, "Symbol not created\n");
|
|
|
|
|
|
|
|
symbol->symbology = data[i].symbology;
|
|
|
|
int length = strlen(data[i].data);
|
|
|
|
|
|
|
|
ret = ZBarcode_Encode(symbol, data[i].data, length);
|
|
|
|
assert_equal(ret, data[i].ret, "i:%d ret %d != %d\n", i, ret, data[i].ret);
|
|
|
|
|
|
|
|
ret = ZBarcode_Render( symbol, data[i].w, data[i].h );
|
|
|
|
assert_equal(ret, data[i].ret_render, "i:%d ZBarcode_Render ret %d != %d\n", i, ret, data[i].ret_render);
|
|
|
|
|
2019-09-02 22:43:14 +12:00
|
|
|
#ifdef TEST_GENERATE_EXPECTED
|
2019-09-02 08:09:47 +12:00
|
|
|
printf("symbology %d, data %s, length %d, rows %d, width %d\n", symbol->symbology, data[i].data, length, symbol->rows, symbol->width);
|
|
|
|
testUtilModulesDump(symbol);
|
|
|
|
#else
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
int width, row;
|
|
|
|
ret = testUtilModulesCmp(symbol, data[i].expected, &width, &row);
|
|
|
|
assert_zero(ret, "i:%d testUtilModulesCmp ret %d != 0 width %d row %d\n", i, ret, width, row);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ZBarcode_Delete(symbol);
|
|
|
|
}
|
|
|
|
|
|
|
|
testFinish();
|
|
|
|
}
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
test_best_supported_set();
|
|
|
|
|
|
|
|
testReport();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|