Mercurial > hgrepos > Python2 > PyMuPDF
comparison mupdf-source/thirdparty/zint/backend/tests/test_png.c @ 2:b50eed0cc0ef upstream
ADD: MuPDF v1.26.7: the MuPDF source as downloaded by a default build of PyMuPDF 1.26.4.
The directory name has changed: no version number in the expanded directory now.
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Mon, 15 Sep 2025 11:43:07 +0200 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 1:1d09e1dec1d9 | 2:b50eed0cc0ef |
|---|---|
| 1 /* | |
| 2 libzint - the open source barcode library | |
| 3 Copyright (C) 2020-2024 Robin Stuart <rstuart114@gmail.com> | |
| 4 | |
| 5 Redistribution and use in source and binary forms, with or without | |
| 6 modification, are permitted provided that the following conditions | |
| 7 are met: | |
| 8 | |
| 9 1. Redistributions of source code must retain the above copyright | |
| 10 notice, this list of conditions and the following disclaimer. | |
| 11 2. Redistributions in binary form must reproduce the above copyright | |
| 12 notice, this list of conditions and the following disclaimer in the | |
| 13 documentation and/or other materials provided with the distribution. | |
| 14 3. Neither the name of the project nor the names of its contributors | |
| 15 may be used to endorse or promote products derived from this software | |
| 16 without specific prior written permission. | |
| 17 | |
| 18 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | |
| 19 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
| 20 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
| 21 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE | |
| 22 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
| 23 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | |
| 24 OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
| 25 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
| 26 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
| 27 OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
| 28 SUCH DAMAGE. | |
| 29 */ | |
| 30 /* SPDX-License-Identifier: BSD-3-Clause */ | |
| 31 | |
| 32 #include "testcommon.h" | |
| 33 #include <errno.h> | |
| 34 #include <zlib.h> /* For ZLIBNG_VERSION define (if any) */ | |
| 35 #include <sys/stat.h> | |
| 36 | |
| 37 INTERNAL int png_pixel_plot(struct zint_symbol *symbol, unsigned char *pixelbuf); | |
| 38 | |
| 39 static void test_pixel_plot(const testCtx *const p_ctx) { | |
| 40 int debug = p_ctx->debug; | |
| 41 | |
| 42 struct item { | |
| 43 int width; | |
| 44 int height; | |
| 45 char *pattern; | |
| 46 int repeat; | |
| 47 int ret; | |
| 48 }; | |
| 49 /* s/\/\*[ 0-9]*\*\//\=printf("\/\*%3d*\/", line(".") - line("'<")): */ | |
| 50 static const struct item data[] = { | |
| 51 /* 0*/ { 1, 1, "1", 0, 0 }, | |
| 52 /* 1*/ { 2, 1, "11", 0, 0 }, | |
| 53 /* 2*/ { 2, 2, "10", 1, 0 }, | |
| 54 /* 3*/ { 3, 1, "101", 0, 0 }, | |
| 55 /* 4*/ { 3, 2, "101010", 0, 0 }, | |
| 56 /* 5*/ { 3, 3, "101010101", 0, 0 }, | |
| 57 /* 6*/ { 8, 2, "CBMWKRYGGYRKWMBC", 0, 0 }, | |
| 58 }; | |
| 59 const int data_size = ARRAY_SIZE(data); | |
| 60 int i, ret; | |
| 61 struct zint_symbol *symbol = NULL; | |
| 62 | |
| 63 char *png = "out.png"; | |
| 64 | |
| 65 char data_buf[8 * 2 + 1]; | |
| 66 | |
| 67 const char *const have_identify = testUtilHaveIdentify(); | |
| 68 | |
| 69 testStart("test_pixel_plot"); | |
| 70 | |
| 71 for (i = 0; i < data_size; i++) { | |
| 72 int size; | |
| 73 | |
| 74 if (testContinue(p_ctx, i)) continue; | |
| 75 | |
| 76 symbol = ZBarcode_Create(); | |
| 77 assert_nonnull(symbol, "Symbol not created\n"); | |
| 78 | |
| 79 strcpy(symbol->outfile, png); | |
| 80 | |
| 81 symbol->bitmap_width = data[i].width; | |
| 82 symbol->bitmap_height = data[i].height; | |
| 83 symbol->debug |= debug; | |
| 84 | |
| 85 size = data[i].width * data[i].height; | |
| 86 assert_nonzero(size < (int) sizeof(data_buf), "i:%d png_pixel_plot size %d < sizeof(data_buf) %d\n", i, size, (int) sizeof(data_buf)); | |
| 87 | |
| 88 if (data[i].repeat) { | |
| 89 testUtilStrCpyRepeat(data_buf, data[i].pattern, size); | |
| 90 } else { | |
| 91 strcpy(data_buf, data[i].pattern); | |
| 92 } | |
| 93 assert_equal(size, (int) strlen(data_buf), "i:%d png_pixel_plot size %d != strlen(data_buf) %d\n", i, size, (int) strlen(data_buf)); | |
| 94 | |
| 95 symbol->bitmap = (unsigned char *) data_buf; | |
| 96 | |
| 97 ret = png_pixel_plot(symbol, (unsigned char *) data_buf); | |
| 98 assert_equal(ret, data[i].ret, "i:%d png_pixel_plot ret %d != %d (%s)\n", i, ret, data[i].ret, symbol->errtxt); | |
| 99 | |
| 100 if (ret < ZINT_ERROR) { | |
| 101 if (have_identify) { | |
| 102 ret = testUtilVerifyIdentify(have_identify, symbol->outfile, debug); | |
| 103 assert_zero(ret, "i:%d identify %s ret %d != 0\n", i, symbol->outfile, ret); | |
| 104 } | |
| 105 if (!(debug & ZINT_DEBUG_TEST_KEEP_OUTFILE)) { | |
| 106 assert_zero(testUtilRemove(symbol->outfile), "i:%d testUtilRemove(%s) != 0\n", i, symbol->outfile); | |
| 107 } | |
| 108 } else { | |
| 109 if (!(debug & ZINT_DEBUG_TEST_KEEP_OUTFILE)) { | |
| 110 (void) testUtilRemove(symbol->outfile); | |
| 111 } | |
| 112 } | |
| 113 | |
| 114 symbol->bitmap = NULL; | |
| 115 | |
| 116 ZBarcode_Delete(symbol); | |
| 117 } | |
| 118 | |
| 119 testFinish(); | |
| 120 } | |
| 121 | |
| 122 static void test_print(const testCtx *const p_ctx) { | |
| 123 int debug = p_ctx->debug; | |
| 124 | |
| 125 struct item { | |
| 126 int symbology; | |
| 127 int input_mode; | |
| 128 int border_width; | |
| 129 int output_options; | |
| 130 int whitespace_width; | |
| 131 int whitespace_height; | |
| 132 int show_hrt; | |
| 133 int option_1; | |
| 134 int option_2; | |
| 135 float height; | |
| 136 float scale; | |
| 137 struct zint_structapp structapp; | |
| 138 char *fgcolour; | |
| 139 char *bgcolour; | |
| 140 float text_gap; | |
| 141 char *data; | |
| 142 char *composite; | |
| 143 int ret; | |
| 144 char *expected_file; | |
| 145 char *comment; | |
| 146 }; | |
| 147 static const struct item data[] = { | |
| 148 /* 0*/ { BARCODE_CODE128, UNICODE_MODE, -1, -1, -1, -1, -1, -1, -1, 10.0, 0, { 0, 0, "" }, "", "", 1, "!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~", "", 0, "code128_latin1_1.png", "" }, | |
| 149 /* 1*/ { BARCODE_CODE128, UNICODE_MODE, -1, -1, -1, -1, -1, -1, -1, 10.0, 0, { 0, 0, "" }, "", "", 1, "¡¢£¤¥¦§¨©ª«¬®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ", "", 0, "code128_latin1_2.png", "" }, | |
| 150 /* 2*/ { BARCODE_CODE128, UNICODE_MODE, -1, BOLD_TEXT, -1, -1, -1, -1, -1, 10.0, 0, { 0, 0, "" }, "", "", 1, "!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~", "", 0, "code128_latin1_1_bold.png", "" }, | |
| 151 /* 3*/ { BARCODE_CODE128, UNICODE_MODE, -1, BOLD_TEXT, -1, -1, -1, -1, -1, 10.0, 0, { 0, 0, "" }, "", "", 1, "¡¢£¤¥¦§¨©ª«¬®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ", "", 0, "code128_latin1_2_bold.png", "" }, | |
| 152 /* 4*/ { BARCODE_CODE128, UNICODE_MODE, -1, SMALL_TEXT, -1, -1, -1, -1, -1, 10.0, 0, { 0, 0, "" }, "", "", 1, "!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~", "", 0, "code128_latin1_1_small.png", "" }, | |
| 153 /* 5*/ { BARCODE_CODE128, UNICODE_MODE, -1, SMALL_TEXT, -1, -1, -1, -1, -1, 10.0, 0, { 0, 0, "" }, "", "", 1, "¡¢£¤¥¦§¨©ª«¬®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ", "", 0, "code128_latin1_2_small.png", "" }, | |
| 154 /* 6*/ { BARCODE_CODE128, UNICODE_MODE, -1, -1, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "Égjpqy", "", 0, "code128_egrave.png", "" }, | |
| 155 /* 7*/ { BARCODE_CODE128, UNICODE_MODE, -1, BOLD_TEXT, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "Égjpqy", "", 0, "code128_egrave_bold.png", "" }, | |
| 156 /* 8*/ { BARCODE_CODE128, UNICODE_MODE, 3, BOLD_TEXT | BARCODE_BOX, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "Égjpqy", "", 0, "code128_egrave_bold_box3.png", "" }, | |
| 157 /* 9*/ { BARCODE_CODE128, UNICODE_MODE, 2, BOLD_TEXT | BARCODE_BOX, 2, 2, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "Égjpqy", "", 0, "code128_egrave_bold_hvwsp2_box2.png", "" }, | |
| 158 /* 10*/ { BARCODE_GS1_128_CC, -1, -1, -1, -1, -1, -1, 3, -1, 0, 0, { 0, 0, "" }, "", "", 1, "[00]030123456789012340", "[02]13012345678909[37]24[10]1234567ABCDEFG", 0, "gs1_128_cc_fig12.png", "" }, | |
| 159 /* 11*/ { BARCODE_CODABLOCKF, -1, 3, -1, -1, -1, -1, 3, -1, 0, 0, { 0, 0, "" }, "", "", 1, "AAAAAAAAA", "", 0, "codablockf_3rows.png", "" }, | |
| 160 /* 12*/ { BARCODE_CODABLOCKF, -1, -1, -1, 2, 2, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "AAAAAAAAA", "", 0, "codablockf_hvwsp2.png", "" }, | |
| 161 /* 13*/ { BARCODE_CODABLOCKF, -1, 2, BARCODE_BOX, 2, 2, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "AAAAAAAAA", "", 0, "codablockf_hvwsp2_box2.png", "" }, | |
| 162 /* 14*/ { BARCODE_EANX, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "9771384524017", "", 0, "ean13_ggs_5.2.2.1-1.png", "" }, | |
| 163 /* 15*/ { BARCODE_EANX, -1, -1, EANUPC_GUARD_WHITESPACE, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "9771384524017", "", 0, "ean13_ggs_5.2.2.1-1_gws.png", "" }, | |
| 164 /* 16*/ { BARCODE_EANX, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "9771384524017+12", "", 0, "ean13_2addon_ggs_5.2.2.5.1-2.png", "" }, | |
| 165 /* 17*/ { BARCODE_EANX, -1, -1, EANUPC_GUARD_WHITESPACE, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "9771384524017+12", "", 0, "ean13_2addon_ggs_5.2.2.5.1-2_gws.png", "" }, | |
| 166 /* 18*/ { BARCODE_EANX, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "9780877799306+54321", "", 0, "ean13_5addon_ggs_5.2.2.5.2-2.png", "" }, | |
| 167 /* 19*/ { BARCODE_EANX, -1, -1, EANUPC_GUARD_WHITESPACE, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "9780877799306+54321", "", 0, "ean13_5addon_ggs_5.2.2.5.2-2_gws.png", "" }, | |
| 168 /* 20*/ { BARCODE_EANX_CC, -1, -1, -1, -1, -1, -1, 1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "123456789012", "[91]12345678901234567890123456789", 0, "ean13_cc_cca_5x4.png", "" }, | |
| 169 /* 21*/ { BARCODE_EANX_CC, -1, -1, EANUPC_GUARD_WHITESPACE, -1, -1, -1, 1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "123456789012", "[91]12345678901234567890123456789", 0, "ean13_cc_cca_5x4_gws.png", "" }, | |
| 170 /* 22*/ { BARCODE_EANX_CC, -1, -1, -1, -1, -1, -1, 1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "123456789012+12", "[91]123456789012345678901", 0, "ean13_cc_2addon_cca_4x4.png", "" }, | |
| 171 /* 23*/ { BARCODE_EANX_CC, -1, -1, EANUPC_GUARD_WHITESPACE, -1, -1, -1, 1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "123456789012+12", "[91]123456789012345678901", 0, "ean13_cc_2addon_cca_4x4_gws.png", "" }, | |
| 172 /* 24*/ { BARCODE_EANX_CC, -1, -1, -1, -1, -1, -1, 2, -1, 0, 0, { 0, 0, "" }, "", "", 1, "123456789012+54321", "[91]1234567890", 0, "ean13_cc_5addon_ccb_3x4.png", "" }, | |
| 173 /* 25*/ { BARCODE_EANX_CC, -1, -1, EANUPC_GUARD_WHITESPACE, -1, -1, -1, 2, -1, 0, 0, { 0, 0, "" }, "", "", 1, "123456789012+54321", "[91]1234567890", 0, "ean13_cc_5addon_ccb_3x4_gws.png", "" }, | |
| 174 /* 26*/ { BARCODE_EANX_CC, -1, -1, -1, -1, -1, 0, 2, -1, 0, 0, { 0, 0, "" }, "", "", 1, "123456789012+54321", "[91]1234567890", 0, "ean13_cc_5addon_ccb_3x4_notext.png", "" }, | |
| 175 /* 27*/ { BARCODE_UPCA, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "012345678905+24", "", 0, "upca_2addon_ggs_5.2.6.6-5.png", "" }, | |
| 176 /* 28*/ { BARCODE_UPCA, -1, -1, EANUPC_GUARD_WHITESPACE, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "012345678905+24", "", 0, "upca_2addon_ggs_5.2.6.6-5_gws.png", "" }, | |
| 177 /* 29*/ { BARCODE_UPCA, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "614141234417+12345", "", 0, "upca_5addon.png", "" }, | |
| 178 /* 30*/ { BARCODE_UPCA, -1, -1, EANUPC_GUARD_WHITESPACE, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "614141234417+12345", "", 0, "upca_5addon_gws.png", "" }, | |
| 179 /* 31*/ { BARCODE_UPCA, -1, -1, -1, -1, -1, 0, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "614141234417+12345", "", 0, "upca_5addon_notext.png", "" }, | |
| 180 /* 32*/ { BARCODE_UPCA, -1, 3, BARCODE_BIND, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "614141234417+12345", "", 0, "upca_5addon_bind3.png", "" }, | |
| 181 /* 33*/ { BARCODE_UPCA_CC, -1, -1, -1, -1, -1, -1, 1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "12345678901+12", "[91]123456789", 0, "upca_cc_2addon_cca_3x4.png", "" }, | |
| 182 /* 34*/ { BARCODE_UPCA_CC, -1, -1, EANUPC_GUARD_WHITESPACE, -1, -1, -1, 1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "12345678901+12", "[91]123456789", 0, "upca_cc_2addon_cca_3x4_gws.png", "" }, | |
| 183 /* 35*/ { BARCODE_UPCA_CC, -1, -1, -1, -1, -1, -1, 2, -1, 0, 0, { 0, 0, "" }, "", "", 1, "12345678901+12121", "[91]1234567890123", 0, "upca_cc_5addon_ccb_4x4.png", "" }, | |
| 184 /* 36*/ { BARCODE_UPCA_CC, -1, -1, -1, -1, -1, 0, 2, -1, 0, 0, { 0, 0, "" }, "", "", 1, "12345678901+12121", "[91]1234567890123", 0, "upca_cc_5addon_ccb_4x4_notext.png", "" }, | |
| 185 /* 37*/ { BARCODE_UPCA_CC, -1, 3, BARCODE_BIND, -1, -1, -1, 2, -1, 0, 0, { 0, 0, "" }, "", "", 1, "12345678901+12121", "[91]1234567890123", 0, "upca_cc_5addon_ccb_4x4_bind3.png", "" }, | |
| 186 /* 38*/ { BARCODE_UPCE, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "1234567+12", "", 0, "upce_2addon.png", "" }, | |
| 187 /* 39*/ { BARCODE_UPCE, -1, -1, EANUPC_GUARD_WHITESPACE, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "1234567+12", "", 0, "upce_2addon_gws.png", "" }, | |
| 188 /* 40*/ { BARCODE_UPCE, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "1234567+12345", "", 0, "upce_5addon.png", "" }, | |
| 189 /* 41*/ { BARCODE_UPCE, -1, -1, SMALL_TEXT, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "1234567+12345", "", 0, "upce_5addon_small.png", "" }, | |
| 190 /* 42*/ { BARCODE_UPCE, -1, -1, SMALL_TEXT | EANUPC_GUARD_WHITESPACE, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "1234567+12345", "", 0, "upce_5addon_small_gws.png", "" }, | |
| 191 /* 43*/ { BARCODE_UPCE_CC, -1, -1, -1, -1, -1, -1, 1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "0654321+89", "[91]1", 0, "upce_cc_2addon_cca_5x2.png", "" }, | |
| 192 /* 44*/ { BARCODE_UPCE_CC, -1, -1, EANUPC_GUARD_WHITESPACE, -1, -1, -1, 1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "0654321+89", "[91]1", 0, "upce_cc_2addon_cca_5x2_gws.png", "" }, | |
| 193 /* 45*/ { BARCODE_UPCE_CC, -1, -1, -1, -1, -1, -1, 2, -1, 0, 0, { 0, 0, "" }, "", "", 1, "1876543+56789", "[91]12345", 0, "upce_cc_5addon_ccb_8x2.png", "" }, | |
| 194 /* 46*/ { BARCODE_UPCE_CC, -1, -1, EANUPC_GUARD_WHITESPACE, -1, -1, -1, 2, -1, 0, 0, { 0, 0, "" }, "", "", 1, "1876543+56789", "[91]12345", 0, "upce_cc_5addon_ccb_8x2_gws.png", "" }, | |
| 195 /* 47*/ { BARCODE_UPCE_CC, -1, -1, -1, -1, -1, 0, 2, -1, 0, 0, { 0, 0, "" }, "", "", 1, "1876543+56789", "[91]12345", 0, "upce_cc_5addon_ccb_8x2_notext.png", "" }, | |
| 196 /* 48*/ { BARCODE_EANX, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "1234567", "", 0, "ean8_gss_5.2.2.2-1.png", "" }, | |
| 197 /* 49*/ { BARCODE_EANX, -1, -1, EANUPC_GUARD_WHITESPACE, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "1234567", "", 0, "ean8_gss_5.2.2.2-1_gws.png", "" }, | |
| 198 /* 50*/ { BARCODE_EANX, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "1234567+12", "", 0, "ean8_2addon.png", "" }, | |
| 199 /* 51*/ { BARCODE_EANX, -1, -1, EANUPC_GUARD_WHITESPACE, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "1234567+12", "", 0, "ean8_2addon_gws.png", "" }, | |
| 200 /* 52*/ { BARCODE_EANX, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "1234567+12345", "", 0, "ean8_5addon.png", "" }, | |
| 201 /* 53*/ { BARCODE_EANX, -1, -1, EANUPC_GUARD_WHITESPACE, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "1234567+12345", "", 0, "ean8_5addon_gws.png", "" }, | |
| 202 /* 54*/ { BARCODE_EANX_CC, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "9876543+65", "[91]1234567", 0, "ean8_cc_2addon_cca_4x3.png", "" }, | |
| 203 /* 55*/ { BARCODE_EANX_CC, -1, -1, EANUPC_GUARD_WHITESPACE, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "9876543+65", "[91]1234567", 0, "ean8_cc_2addon_cca_4x3_gws.png", "" }, | |
| 204 /* 56*/ { BARCODE_EANX_CC, -1, -1, -1, -1, -1, -1, 2, -1, 0, 0, { 0, 0, "" }, "", "", 1, "9876543+74083", "[91]123456789012345678", 0, "ean8_cc_5addon_ccb_8x3.png", "" }, | |
| 205 /* 57*/ { BARCODE_EANX_CC, -1, -1, EANUPC_GUARD_WHITESPACE, -1, -1, -1, 2, -1, 0, 0, { 0, 0, "" }, "", "", 1, "9876543+74083", "[91]123456789012345678", 0, "ean8_cc_5addon_ccb_8x3_gws.png", "" }, | |
| 206 /* 58*/ { BARCODE_EANX, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "12345", "", 0, "ean5.png", "" }, | |
| 207 /* 59*/ { BARCODE_EANX, -1, -1, EANUPC_GUARD_WHITESPACE, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "12345", "", 0, "ean5_gws.png", "" }, | |
| 208 /* 60*/ { BARCODE_EANX, -1, 2, BARCODE_BIND, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "12345", "", 0, "ean5_bind2.png", "" }, | |
| 209 /* 61*/ { BARCODE_EANX, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "12", "", 0, "ean2.png", "" }, | |
| 210 /* 62*/ { BARCODE_EANX, -1, -1, EANUPC_GUARD_WHITESPACE, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "12", "", 0, "ean2_gws.png", "" }, | |
| 211 /* 63*/ { BARCODE_EANX, -1, 1, BARCODE_BOX, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "12", "", 0, "ean2_box1.png", "" }, | |
| 212 /* 64*/ { BARCODE_CODE39, -1, -1, SMALL_TEXT, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "123", "", 0, "code39_small.png", "" }, | |
| 213 /* 65*/ { BARCODE_POSTNET, -1, -1, -1, -1, -1, -1, -1, -1, 0, 3.5, { 0, 0, "" }, "", "", 1, "12345", "", 0, "postnet_zip.png", "300 dpi, using 1/43in X, 300 / 43 / 2 = ~3.5 scale" }, | |
| 214 /* 66*/ { BARCODE_PDF417, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "CFCECDCC", 1, "12345", "", 0, "pdf417_bgalpha.png", "" }, | |
| 215 /* 67*/ { BARCODE_PDF417, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "30313233", "", 1, "12345", "", 0, "pdf417_fgalpha.png", "" }, | |
| 216 /* 68*/ { BARCODE_PDF417, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "20212244", "CFCECDCC", 1, "12345", "", 0, "pdf417_bgfgalpha.png", "" }, | |
| 217 /* 69*/ { BARCODE_ULTRA, -1, -1, -1, 2, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "0000007F", "FF000033", 1, "12345", "", 0, "ultra_bgfgalpha.png", "" }, | |
| 218 /* 70*/ { BARCODE_ULTRA, -1, -1, -1, 2, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "FF000033", 1, "12345", "", 0, "ultra_bgalpha.png", "" }, | |
| 219 /* 71*/ { BARCODE_ULTRA, -1, -1, -1, 2, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "0000007F", "FF0000", 1, "12345", "", 0, "ultra_fgalpha.png", "" }, | |
| 220 /* 72*/ { BARCODE_ULTRA, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "0000007F", "", 1, "12345", "", 0, "ultra_fgalpha_nobg.png", "" }, | |
| 221 /* 73*/ { BARCODE_ULTRA, -1, 1, BARCODE_BOX, 1, 1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "12345", "", 0, "ultra_hvwsp1_box1.png", "" }, | |
| 222 /* 74*/ { BARCODE_ULTRA, -1, 1, BARCODE_BOX, 1, 1, -1, -1, -1, 0, 0, { 0, 0, "" }, "00FF007F", "BABDB6", 1, "12345", "", 0, "ultra_fgalpha_hvwsp1_box1.png", "" }, | |
| 223 /* 75*/ { BARCODE_ULTRA, -1, 1, BARCODE_BIND_TOP, 1, 1, -1, -1, -1, 0, 0, { 0, 0, "" }, "00FF007F", "BABDB6", 1, "12345", "", 0, "ultra_fgalpha_hvwsp1_bindtop1.png", "" }, | |
| 224 /* 76*/ { BARCODE_ULTRA, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0.5, { 0, 0, "" }, "", "", 1, "1", "", 0, "ultra_odd.png", "" }, | |
| 225 /* 77*/ { BARCODE_MAXICODE, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0.5, { 0, 0, "" }, "", "", 1, "ABCDEFGHIJKLMNOPQRSTUVWXYZ", "", 0, "maxicode_0.5.png", "6 dpmm, 150 dpi" }, | |
| 226 /* 78*/ { BARCODE_MAXICODE, -1, 1, BARCODE_BOX, 3, -1, -1, -1, -1, 0, 0.7, { 0, 0, "" }, "", "", 1, "ABCDEFGHIJKLMNOPQRSTUVWXYZ", "", 0, "maxicode_0.7_wsp3_box1.png", "8 dpmm, 200 dpi" }, | |
| 227 /* 79*/ { BARCODE_MAXICODE, -1, -1, -1, -1, -1, -1, -1, -1, 0, 1.4, { 0, 0, "" }, "1111117F", "EEEEEEEE", 1, "ABCDEFGHIJKLMNOPQRSTUVWXYZ", "", 0, "maxicode_1.4_bgfgalpha.png", "16 dpmm, 400 dpi" }, | |
| 228 /* 80*/ { BARCODE_MAXICODE, -1, -1, -1, -1, -1, -1, -1, -1, 0, 2.1, { 0, 0, "" }, "", "", 1, "ABCDEFGHIJKLMNOPQRSTUVWXYZ", "", 0, "maxicode_2.1.png", "24 dpmm, 600 dpi" }, | |
| 229 /* 81*/ { BARCODE_MAXICODE, -1, 2, BARCODE_BOX, 1, 1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "ABCDEFGHIJKLMNOPQRSTUVWXYZ", "", 0, "maxicode_hvwsp1_box2.png", "" }, | |
| 230 /* 82*/ { BARCODE_MAXICODE, -1, 1, BARCODE_BIND, -1, 1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "ABCDEFGHIJKLMNOPQRSTUVWXYZ", "", 0, "maxicode_vwsp1_bind1.png", "" }, | |
| 231 /* 83*/ { BARCODE_DATAMATRIX, -1, 1, BARCODE_BIND | BARCODE_DOTTY_MODE, -1, -1, -1, -1, -1, 0, 2.0, { 0, 0, "" }, "", "", 1, "1234", "", 0, "datamatrix_2.0_bind1_dotty.png", "" }, | |
| 232 /* 84*/ { BARCODE_DATAMATRIX, -1, 1, BARCODE_BIND | BARCODE_DOTTY_MODE, 1, 1, -1, -1, -1, 0, 2.0, { 0, 0, "" }, "", "", 1, "1234", "", 0, "datamatrix_2.0_hvwsp1_bind1_dotty.png", "" }, | |
| 233 /* 85*/ { BARCODE_DBAR_LTD, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "12345678909", "", 0, "dbar_ltd.png", "" }, | |
| 234 /* 86*/ { BARCODE_PDF417, -1, -1, -1, -1, -1, -1, -1, -1, 5.0, 0, { 0, 0, "" }, "", "", 1, "Your Data Here!", "", ZINT_WARN_NONCOMPLIANT, "pdf417_height5.png", "" }, | |
| 235 /* 87*/ { BARCODE_USPS_IMAIL, -1, -1, -1, -1, -1, -1, -1, -1, 7.75, 0, { 0, 0, "" }, "", "", 1, "12345678901234567890", "", 0, "imail_height7.75.png", "" }, | |
| 236 /* 88*/ { BARCODE_AZTEC, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, { 4, 7, "Z1.txt" }, "", "", 1, "3456", "", 0, "aztec_z1_seq4of7.png", "" }, | |
| 237 /* 89*/ { BARCODE_PDF417, -1, -1, BARCODE_NO_QUIET_ZONES, -1, -1, -1, 5, 8, 16, 1.5, { 0, 0, "" }, "", "", 1, "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBB", "", ZINT_WARN_NONCOMPLIANT, "pdf417_#204.png", "Ticket #204 Blank line in PDF417" }, | |
| 238 /* 90*/ { BARCODE_DPD, -1, -1, BARCODE_QUIET_ZONES | COMPLIANT_HEIGHT, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "", "", 1, "008182709980000020028101276", "", 0, "dpd_compliant.png", "Now with bind top 3X default" }, | |
| 239 /* 91*/ { BARCODE_CHANNEL, -1, -1, CMYK_COLOUR | COMPLIANT_HEIGHT, -1, -1, -1, -1, -1, 0, 0, { 0, 0, "" }, "100,85,0,20", "FFFFFF00", 1, "123", "", 0, "channel_cmyk_nobg.png", "" }, | |
| 240 }; | |
| 241 const int data_size = ARRAY_SIZE(data); | |
| 242 int i, length, ret; | |
| 243 struct zint_symbol *symbol = NULL; | |
| 244 | |
| 245 const char *data_dir = "/backend/tests/data/png"; | |
| 246 const char *png = "out.png"; | |
| 247 char expected_file[1024]; | |
| 248 char escaped[1024]; | |
| 249 int escaped_size = 1024; | |
| 250 unsigned char filebuf[32768]; | |
| 251 int filebuf_size; | |
| 252 char *text; | |
| 253 | |
| 254 const char *const have_identify = testUtilHaveIdentify(); | |
| 255 | |
| 256 testStartSymbol("test_print", &symbol); | |
| 257 | |
| 258 if (p_ctx->generate) { | |
| 259 char data_dir_path[1024]; | |
| 260 assert_nonzero(testUtilDataPath(data_dir_path, sizeof(data_dir_path), data_dir, NULL), "testUtilDataPath(%s) == 0\n", data_dir); | |
| 261 if (!testUtilDirExists(data_dir_path)) { | |
| 262 ret = testUtilMkDir(data_dir_path); | |
| 263 assert_zero(ret, "testUtilMkDir(%s) ret %d != 0 (%d: %s)\n", data_dir_path, ret, errno, strerror(errno)); | |
| 264 } | |
| 265 } | |
| 266 | |
| 267 for (i = 0; i < data_size; i++) { | |
| 268 int text_length; | |
| 269 | |
| 270 if (testContinue(p_ctx, i)) continue; | |
| 271 | |
| 272 symbol = ZBarcode_Create(); | |
| 273 assert_nonnull(symbol, "Symbol not created\n"); | |
| 274 | |
| 275 length = testUtilSetSymbol(symbol, data[i].symbology, data[i].input_mode, -1 /*eci*/, data[i].option_1, data[i].option_2, -1, data[i].output_options, data[i].data, -1, debug); | |
| 276 if (data[i].show_hrt != -1) { | |
| 277 symbol->show_hrt = data[i].show_hrt; | |
| 278 } | |
| 279 if (data[i].height) { | |
| 280 symbol->height = data[i].height; | |
| 281 } | |
| 282 if (data[i].scale) { | |
| 283 symbol->scale = data[i].scale; | |
| 284 } | |
| 285 if (data[i].border_width != -1) { | |
| 286 symbol->border_width = data[i].border_width; | |
| 287 } | |
| 288 if (data[i].whitespace_width != -1) { | |
| 289 symbol->whitespace_width = data[i].whitespace_width; | |
| 290 } | |
| 291 if (data[i].whitespace_height != -1) { | |
| 292 symbol->whitespace_height = data[i].whitespace_height; | |
| 293 } | |
| 294 if (data[i].structapp.count) { | |
| 295 symbol->structapp = data[i].structapp; | |
| 296 } | |
| 297 if (*data[i].fgcolour) { | |
| 298 strcpy(symbol->fgcolour, data[i].fgcolour); | |
| 299 } | |
| 300 if (*data[i].bgcolour) { | |
| 301 strcpy(symbol->bgcolour, data[i].bgcolour); | |
| 302 } | |
| 303 symbol->text_gap = data[i].text_gap; | |
| 304 | |
| 305 if (strlen(data[i].composite)) { | |
| 306 text = data[i].composite; | |
| 307 strcpy(symbol->primary, data[i].data); | |
| 308 } else { | |
| 309 text = data[i].data; | |
| 310 } | |
| 311 text_length = (int) strlen(text); | |
| 312 | |
| 313 ret = ZBarcode_Encode(symbol, (unsigned char *) text, text_length); | |
| 314 assert_equal(ret, data[i].ret, "i:%d %s ZBarcode_Encode ret %d != %d (%s)\n", i, testUtilBarcodeName(data[i].symbology), ret, data[i].ret, symbol->errtxt); | |
| 315 | |
| 316 strcpy(symbol->outfile, png); | |
| 317 ret = ZBarcode_Print(symbol, 0); | |
| 318 assert_zero(ret, "i:%d %s ZBarcode_Print %s ret %d != 0 (%s)\n", i, testUtilBarcodeName(data[i].symbology), symbol->outfile, ret, symbol->errtxt); | |
| 319 | |
| 320 assert_nonzero(testUtilDataPath(expected_file, sizeof(expected_file), data_dir, data[i].expected_file), "i:%d testUtilDataPath == 0\n", i); | |
| 321 | |
| 322 if (p_ctx->generate) { | |
| 323 printf(" /*%3d*/ { %s, %s, %d, %s, %d, %d, %d, %d, %d, %.5g, %.5g, { %d, %d, \"%s\" }, \"%s\", \"%s\", %.5g, \"%s\", \"%s\", %s, \"%s\", \"%s\" },\n", | |
| 324 i, testUtilBarcodeName(data[i].symbology), testUtilInputModeName(data[i].input_mode), data[i].border_width, testUtilOutputOptionsName(data[i].output_options), | |
| 325 data[i].whitespace_width, data[i].whitespace_height, data[i].show_hrt, data[i].option_1, data[i].option_2, data[i].height, data[i].scale, | |
| 326 data[i].structapp.index, data[i].structapp.count, data[i].structapp.id, | |
| 327 data[i].fgcolour, data[i].bgcolour, data[i].text_gap, | |
| 328 testUtilEscape(data[i].data, length, escaped, escaped_size), data[i].composite, testUtilErrorName(data[i].ret), data[i].expected_file, data[i].comment); | |
| 329 ret = testUtilRename(symbol->outfile, expected_file); | |
| 330 assert_zero(ret, "i:%d testUtilRename(%s, %s) ret %d != 0\n", i, symbol->outfile, expected_file, ret); | |
| 331 if (have_identify) { | |
| 332 ret = testUtilVerifyIdentify(have_identify, expected_file, debug); | |
| 333 assert_zero(ret, "i:%d %s identify %s ret %d != 0\n", i, testUtilBarcodeName(data[i].symbology), expected_file, ret); | |
| 334 } | |
| 335 } else { | |
| 336 assert_nonzero(testUtilExists(symbol->outfile), "i:%d testUtilExists(%s) == 0\n", i, symbol->outfile); | |
| 337 assert_nonzero(testUtilExists(expected_file), "i:%d testUtilExists(%s) == 0\n", i, expected_file); | |
| 338 | |
| 339 ret = testUtilCmpPngs(symbol->outfile, expected_file); | |
| 340 assert_zero(ret, "i:%d %s testUtilCmpPngs(%s, %s) %d != 0\n", i, testUtilBarcodeName(data[i].symbology), symbol->outfile, expected_file, ret); | |
| 341 #ifndef ZLIBNG_VERSION /* zlib-ng (used by e.g. Fedora 40) may produce non-binary compat output */ | |
| 342 ret = testUtilCmpBins(symbol->outfile, expected_file); | |
| 343 assert_zero(ret, "i:%d %s testUtilCmpBins(%s, %s) %d != 0\n", i, testUtilBarcodeName(data[i].symbology), symbol->outfile, expected_file, ret); | |
| 344 #endif | |
| 345 | |
| 346 ret = testUtilReadFile(symbol->outfile, filebuf, sizeof(filebuf), &filebuf_size); /* For BARCODE_MEMORY_FILE */ | |
| 347 assert_zero(ret, "i:%d %s testUtilReadFile(%s) %d != 0\n", i, testUtilBarcodeName(data[i].symbology), symbol->outfile, ret); | |
| 348 | |
| 349 if (!(debug & ZINT_DEBUG_TEST_KEEP_OUTFILE)) { | |
| 350 assert_zero(testUtilRemove(symbol->outfile), "i:%d testUtilRemove(%s) != 0\n", i, symbol->outfile); | |
| 351 } | |
| 352 | |
| 353 symbol->output_options |= BARCODE_MEMORY_FILE; | |
| 354 ret = ZBarcode_Print(symbol, 0); | |
| 355 assert_zero(ret, "i:%d %s ZBarcode_Print %s ret %d != 0 (%s)\n", | |
| 356 i, testUtilBarcodeName(data[i].symbology), symbol->outfile, ret, symbol->errtxt); | |
| 357 assert_nonnull(symbol->memfile, "i:%d %s memfile NULL\n", i, testUtilBarcodeName(data[i].symbology)); | |
| 358 assert_equal(symbol->memfile_size, filebuf_size, "i:%d %s memfile_size %d != %d\n", | |
| 359 i, testUtilBarcodeName(data[i].symbology), symbol->memfile_size, filebuf_size); | |
| 360 assert_zero(memcmp(symbol->memfile, filebuf, symbol->memfile_size), "i:%d %s memcmp(memfile, filebuf) != 0\n", | |
| 361 i, testUtilBarcodeName(data[i].symbology)); | |
| 362 } | |
| 363 | |
| 364 ZBarcode_Delete(symbol); | |
| 365 } | |
| 366 | |
| 367 testFinish(); | |
| 368 } | |
| 369 | |
| 370 static void test_outfile(const testCtx *const p_ctx) { | |
| 371 int ret; | |
| 372 int skip_readonly_test = 0; | |
| 373 struct zint_symbol symbol = {0}; | |
| 374 unsigned char data[] = { "1" }; | |
| 375 | |
| 376 (void)p_ctx; | |
| 377 | |
| 378 testStart("test_outfile"); | |
| 379 | |
| 380 symbol.symbology = BARCODE_CODE128; | |
| 381 symbol.bitmap = data; | |
| 382 symbol.bitmap_width = symbol.bitmap_height = 1; | |
| 383 | |
| 384 strcpy(symbol.outfile, "test_png_out.png"); | |
| 385 #ifndef _WIN32 | |
| 386 skip_readonly_test = getuid() == 0; /* Skip if running as root on Unix as can't create read-only file */ | |
| 387 #endif | |
| 388 if (!skip_readonly_test) { | |
| 389 static char expected_errtxt[] = "632: Could not open PNG output file ("; /* Excluding OS-dependent `errno` stuff */ | |
| 390 | |
| 391 (void) testUtilRmROFile(symbol.outfile); /* In case lying around from previous fail */ | |
| 392 assert_nonzero(testUtilCreateROFile(symbol.outfile), "png_pixel_plot testUtilCreateROFile(%s) fail (%d: %s)\n", symbol.outfile, errno, strerror(errno)); | |
| 393 | |
| 394 ret = png_pixel_plot(&symbol, data); | |
| 395 assert_equal(ret, ZINT_ERROR_FILE_ACCESS, "png_pixel_plot ret %d != ZINT_ERROR_FILE_ACCESS (%d) (%s)\n", ret, ZINT_ERROR_FILE_ACCESS, symbol.errtxt); | |
| 396 assert_zero(testUtilRmROFile(symbol.outfile), "png_pixel_plot testUtilRmROFile(%s) != 0 (%d: %s)\n", symbol.outfile, errno, strerror(errno)); | |
| 397 assert_zero(strncmp(symbol.errtxt, expected_errtxt, sizeof(expected_errtxt) - 1), "strncmp(%s, %s) != 0\n", symbol.errtxt, expected_errtxt); | |
| 398 } | |
| 399 | |
| 400 symbol.output_options |= BARCODE_STDOUT; | |
| 401 | |
| 402 printf(">>>Begin ignore (PNG to stdout)\n"); fflush(stdout); | |
| 403 ret = png_pixel_plot(&symbol, data); | |
| 404 printf("\n<<<End ignore (PNG to stdout)\n"); fflush(stdout); | |
| 405 assert_zero(ret, "png_pixel_plot ret %d != 0 (%s)\n", ret, symbol.errtxt); | |
| 406 | |
| 407 testFinish(); | |
| 408 } | |
| 409 | |
| 410 #include <png.h> | |
| 411 #include <setjmp.h> | |
| 412 | |
| 413 struct wpng_error_type { | |
| 414 struct zint_symbol *symbol; | |
| 415 jmp_buf jmpbuf; | |
| 416 }; | |
| 417 | |
| 418 INTERNAL void wpng_error_handler_test(png_structp png_ptr, png_const_charp msg); | |
| 419 | |
| 420 static void test_wpng_error_handler(const testCtx *const p_ctx) { | |
| 421 int ret; | |
| 422 char filename[] = "out.png"; | |
| 423 FILE *fp; | |
| 424 struct wpng_error_type wpng_error; | |
| 425 struct zint_symbol symbol = {0}; | |
| 426 png_structp png_ptr; | |
| 427 png_infop info_ptr; | |
| 428 | |
| 429 (void)p_ctx; | |
| 430 | |
| 431 testStart("test_wpng_error_handler"); | |
| 432 | |
| 433 wpng_error.symbol = &symbol; | |
| 434 | |
| 435 /* Create empty file */ | |
| 436 (void) testUtilRemove(filename); /* In case junk hanging around */ | |
| 437 fp = testUtilOpen(filename, "w+"); | |
| 438 assert_nonnull(fp, "testUtilOpen(%s) failed\n", filename); | |
| 439 ret = fclose(fp); | |
| 440 assert_zero(ret, "fclose(%s) %d != 0\n", filename, ret); | |
| 441 | |
| 442 /* Re-open for read, which will cause libpng to error */ | |
| 443 fp = testUtilOpen(filename, "r"); | |
| 444 assert_nonnull(fp, "testUtilOpen(%s) for read failed\n", filename); | |
| 445 | |
| 446 png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, &wpng_error, wpng_error_handler_test, NULL); | |
| 447 assert_nonnull(png_ptr, "png_create_write_struct failed\n"); | |
| 448 | |
| 449 info_ptr = png_create_info_struct(png_ptr); | |
| 450 assert_nonnull(info_ptr, "png_create_info_struct failed\n"); | |
| 451 | |
| 452 if (setjmp(wpng_error.jmpbuf)) { | |
| 453 png_destroy_write_struct(&png_ptr, &info_ptr); | |
| 454 ret = fclose(fp); | |
| 455 assert_zero(ret, "fclose(%s) %d != 0\n", filename, ret); | |
| 456 assert_nonnull(strstr(symbol.errtxt, "635: libpng error:"), "strstr(%s) NULL\n", symbol.errtxt); | |
| 457 assert_zero(testUtilRemove(filename), "testUtilRemove(%s) != 0 (%d: %s)\n", filename, errno, strerror(errno)); | |
| 458 } else { | |
| 459 png_init_io(png_ptr, fp); | |
| 460 | |
| 461 /* This should fail and jmp to setjmp */ | |
| 462 png_write_info(png_ptr, info_ptr); | |
| 463 assert_zero(1, "libpng error setjmp failed\n"); | |
| 464 } | |
| 465 | |
| 466 testFinish(); | |
| 467 } | |
| 468 | |
| 469 /* Check compliant height printable for max CODABLOCKF with 44 rows * ((62 cols) * 0.55 + 3)) = 1632.4 */ | |
| 470 static void test_large_compliant_height(const testCtx *const p_ctx) { | |
| 471 int ret; | |
| 472 struct zint_symbol *symbol = NULL; | |
| 473 const char pattern[] = { "1" }; | |
| 474 const int codablockf_max = 2726; | |
| 475 char data_buf[2726 + 1]; | |
| 476 | |
| 477 (void)p_ctx; | |
| 478 | |
| 479 testStartSymbol("test_large_compliant_height", &symbol); | |
| 480 | |
| 481 symbol = ZBarcode_Create(); | |
| 482 assert_nonnull(symbol, "Symbol not created\n"); | |
| 483 | |
| 484 symbol->symbology = BARCODE_CODABLOCKF; | |
| 485 symbol->output_options |= COMPLIANT_HEIGHT; | |
| 486 testUtilStrCpyRepeat(data_buf, pattern, codablockf_max); | |
| 487 assert_equal(codablockf_max, (int) strlen(data_buf), "length %d != strlen(data_buf) %d\n", codablockf_max, (int) strlen(data_buf)); | |
| 488 | |
| 489 ret = ZBarcode_Encode_and_Print(symbol, (const unsigned char *) data_buf, codablockf_max, 0); | |
| 490 assert_zero(ret, "ZBarcode_Encode_and_Print ret %d != 0 (%s)\n", ret, symbol->errtxt); | |
| 491 assert_zero(testUtilRemove(symbol->outfile), "testUtilRemove(%s) != 0\n", symbol->outfile); | |
| 492 | |
| 493 ZBarcode_Delete(symbol); | |
| 494 | |
| 495 testFinish(); | |
| 496 } | |
| 497 | |
| 498 int main(int argc, char *argv[]) { | |
| 499 | |
| 500 testFunction funcs[] = { /* name, func */ | |
| 501 { "test_pixel_plot", test_pixel_plot }, | |
| 502 { "test_print", test_print }, | |
| 503 { "test_outfile", test_outfile }, | |
| 504 { "test_wpng_error_handler", test_wpng_error_handler }, | |
| 505 { "test_large_compliant_height", test_large_compliant_height }, | |
| 506 }; | |
| 507 | |
| 508 testRun(argc, argv, funcs, ARRAY_SIZE(funcs)); | |
| 509 | |
| 510 testReport(); | |
| 511 | |
| 512 return 0; | |
| 513 } | |
| 514 | |
| 515 /* vim: set ts=4 sw=4 et : */ |
