-
-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add printer model "xprinter" - Add util function to print CODE128 barcode on Xprinter - Add util function to optimize CODE128 barcode length
- Loading branch information
Xelio Cheong
committed
Dec 5, 2023
1 parent
46b687f
commit ce67387
Showing
3 changed files
with
140 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,85 @@ | ||
import { describe, expect, it } from 'vitest' | ||
import { splitForCode128, genCode128forXprinter } from '../src/utils'; | ||
|
||
describe('should', () => { | ||
it('exported', () => { | ||
expect(1).toEqual(1) | ||
}) | ||
}); | ||
|
||
it('Split string to optimized blocks for CODE128 barcode', () => { | ||
const inputs: string[] = []; | ||
const expected: string[][] = []; | ||
|
||
inputs.push("12"); | ||
expected.push(["12"]); | ||
|
||
inputs.push("123"); | ||
expected.push(["123"]); | ||
|
||
inputs.push("1234"); | ||
expected.push(["1234"]); | ||
|
||
inputs.push("12345"); | ||
expected.push(["1234", '5']); | ||
|
||
inputs.push("123456789"); | ||
expected.push(["12345678","9"]); | ||
|
||
inputs.push("123A4567C"); | ||
expected.push(["123A4567C"]); | ||
|
||
inputs.push("1234A4567C"); | ||
expected.push(["1234","A4567C"]); | ||
|
||
inputs.push("AAA1234"); | ||
expected.push(["AAA","1234"]); | ||
|
||
inputs.push("AAA12345"); | ||
expected.push(["AAA1","2345"]); | ||
|
||
inputs.push("4321AAA1234"); | ||
expected.push(["4321","AAA","1234"]); | ||
|
||
inputs.push("AAA123456BBB"); | ||
expected.push(["AAA","123456","BBB"]); | ||
|
||
inputs.push("12345ABC2345678BCD3456789CDE98765"); | ||
expected.push(["1234","5ABC","234567","8BCD","345678","9CDE9","8765"]); | ||
|
||
inputs.forEach((input,index) => { | ||
expect(splitForCode128(input)).toEqual(expected[index]); | ||
}); | ||
}); | ||
|
||
it('generate CODE128 barcode printing control code for Xprinter', () => { | ||
const inputs: string[] = []; | ||
const expected: string[] = []; | ||
|
||
inputs.push("AB"); | ||
expected.push("\x04{BAB"); | ||
|
||
inputs.push("12"); | ||
expected.push("\x03{C\x0c"); | ||
|
||
inputs.push("123456789"); | ||
expected.push("\x09{C\x0c\x22\x38\x4e{B9"); | ||
|
||
inputs.push("1234ABC"); | ||
expected.push("\x09{C\x0c\x22{BABC"); | ||
|
||
inputs.push("ABC1234"); | ||
expected.push("\x09{BABC{C\x0c\x22"); | ||
|
||
inputs.push("AAA123456BBB"); | ||
expected.push("\x0f{BAAA{C\x0c\x22\x38{BBBB"); | ||
|
||
inputs.push("12345ABC2345678BCD3456789CDE98765"); | ||
expected.push("\x25{C\x0c\x22{B5ABC{C\x17\x2d\x43{B8BCD{C\x22\x38\x4e{B9CDE9{C\x57\x41"); | ||
|
||
inputs.forEach((input,index) => { | ||
expect(genCode128forXprinter(input)).toEqual(expected[index]); | ||
}); | ||
|
||
}); | ||
}) | ||
|