1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
|
#encoding: ASCII
require 'test_helper'
require 'barby/barcode/code_39'
class Code39Test < Barby::TestCase
before do
@data = 'TEST8052'
@code = Code39.new(@data)
@code.spacing = 3
end
it "should yield self on initialize" do
c1 = nil
c2 = Code39.new('TEST'){|c| c1 = c }
c1.must_equal c2
end
it "should have the expected data" do
@code.data.must_equal @data
end
it "should have the expected characters" do
@code.characters.must_equal @data.split(//)
end
it "should have the expected start_encoding" do
@code.start_encoding.must_equal '100101101101'
end
it "should have the expected stop_encoding" do
@code.stop_encoding.must_equal '100101101101'
end
it "should have the expected spacing_encoding" do
@code.spacing_encoding.must_equal '000'
end
it "should have the expected encoded characters" do
@code.encoded_characters.must_equal %w(101011011001 110101100101 101101011001 101011011001 110100101101 101001101101 110100110101 101100101011)
end
it "should have the expected data_encoding" do
@code.data_encoding.must_equal '101011011001000110101100101000101101011001000101011011001000110100101101000101001101101000110100110101000101100101011'
end
it "should have the expected encoding" do
@code.encoding.must_equal '100101101101000101011011001000110101100101000101101011001000101011011001000110100101101000101001101101000110100110101000101100101011000100101101101'
end
it "should be valid" do
assert @code.valid?
end
it "should not be valid" do
@code.data = "123\200456"
refute @code.valid?
end
it "should raise an exception when data is not valid on initialization" do
lambda{ Code39.new('abc') }.must_raise(ArgumentError)
end
it "should return all characters in sequence without checksum on to_s" do
@code.to_s.must_equal @data
end
describe "Checksumming" do
before do
@code = Code39.new('CODE39')
end
it "should have the expected checksum" do
@code.checksum.must_equal 32
end
it "should have the expected checksum_character" do
@code.checksum_character.must_equal 'W'
end
it "should have the expected checksum_encoding" do
@code.checksum_encoding.must_equal '110011010101'
end
it "should have the expected characters_with_checksum" do
@code.characters_with_checksum.must_equal %w(C O D E 3 9 W)
end
it "should have the expected encoded_characters_with_checksum" do
@code.encoded_characters_with_checksum.must_equal %w(110110100101 110101101001 101011001011 110101100101 110110010101 101100101101 110011010101)
end
it "should have the expected data_encoding_with_checksum" do
@code.data_encoding_with_checksum.must_equal "110110100101011010110100101010110010110110101100101011011001010101011001011010110011010101"
end
it "should have the expected encoding_with_checksum" do
@code.encoding_with_checksum.must_equal "10010110110101101101001010110101101001010101100101101101011001010110110010101010110010110101100110101010100101101101"
end
it "should return the encoding with checksum when include_checksum == true" do
@code.include_checksum = true
@code.encoding.must_equal "10010110110101101101001010110101101001010101100101101101011001010110110010101010110010110101100110101010100101101101"
end
end
describe "Normal encoding" do
before do
@data = 'ABC$%'
@code = Code39.new(@data)
end
it "should have the expected characters" do
@code.characters.must_equal %w(A B C $ %)
end
it "should have the expected encoded_characters" do
@code.encoded_characters.must_equal %w(110101001011 101101001011 110110100101 100100100101 101001001001)
end
it "should have the expected data_encoding" do
@code.data_encoding.must_equal '1101010010110101101001011011011010010101001001001010101001001001'
end
it "should not be valid" do
@code.data = 'abc'
refute @code.valid?
end
end
describe "Extended encoding" do
before do
@data = '<abc>'
@code = Code39.new(@data, true)
end
it "should return true on extended?" do
assert @code.extended?
end
it "should have the expected characters" do
@code.characters.must_equal %w(% G + A + B + C % I)
end
it "should have the expected encoded_characters" do
@code.encoded_characters.must_equal %w(101001001001 101010011011 100101001001 110101001011 100101001001 101101001011 100101001001 110110100101 101001001001 101101001101)
end
it "should have the expected data_encoding" do
@code.data_encoding.must_equal '101001001001010101001101101001010010010110101001011010010100100101011010010110100101001001011011010010101010010010010101101001101'
end
it "should have the expected encoding" do
@code.encoding.must_equal '10010110110101010010010010101010011011010010100100101101010010110100101001001'+
'010110100101101001010010010110110100101010100100100101011010011010100101101101'
end
it "should take a second parameter on initialize indicating it is extended" do
assert Code39.new('abc', true).extended?
refute Code39.new('ABC', false).extended?
refute Code39.new('ABC').extended?
end
it "should be valid" do
assert @code.valid?
end
it "should not be valid" do
@code.data = "abc\200123"
refute @code.valid?
end
it "should return all characters in sequence without checksum on to_s" do
@code.to_s.must_equal @data
end
end
describe "Variable widths" do
before do
@data = 'ABC$%'
@code = Code39.new(@data)
@code.narrow_width = 2
@code.wide_width = 5
end
it "should have the expected encoded_characters" do
@code.encoded_characters.must_equal %w(111110011001100000110011111 110011111001100000110011111 111110011111001100000110011 110000011000001100000110011 110011000001100000110000011)
end
it "should have the expected data_encoding" do
# A SB SC S$ S%
@code.data_encoding.must_equal '1111100110011000001100111110110011111001100000110011111011111001111100110000011001101100000110000011000001100110110011000001100000110000011'
@code.spacing = 3
# A S B S C S $ S %
@code.data_encoding.must_equal '111110011001100000110011111000110011111001100000110011111000111110011111001100000110011000110000011000001100000110011000110011000001100000110000011'
end
end
end
|