2010-08-13 17:32:26 -04:00
|
|
|
! Copyright (C) 2010 John Benediktsson
|
|
|
|
! See http://factorcode.org/license.txt for BSD license
|
|
|
|
USING: checksums checksums.internet tools.test ;
|
2016-03-30 23:04:14 -04:00
|
|
|
IN: checksums.internet.tests
|
2010-08-13 17:32:26 -04:00
|
|
|
|
2015-07-03 12:39:59 -04:00
|
|
|
{ B{ 255 255 } } [ { } internet checksum-bytes ] unit-test
|
|
|
|
{ B{ 254 255 } } [ { 1 } internet checksum-bytes ] unit-test
|
|
|
|
{ B{ 254 253 } } [ { 1 2 } internet checksum-bytes ] unit-test
|
|
|
|
{ B{ 251 253 } } [ { 1 2 3 } internet checksum-bytes ] unit-test
|
2010-08-13 17:32:26 -04:00
|
|
|
|
|
|
|
: test-data ( -- bytes )
|
|
|
|
B{
|
2011-11-23 21:49:33 -05:00
|
|
|
0x00 0x01
|
|
|
|
0xf2 0x03
|
|
|
|
0xf4 0xf5
|
|
|
|
0xf6 0xf7
|
2010-08-13 17:32:26 -04:00
|
|
|
} ;
|
|
|
|
|
2015-07-03 12:39:59 -04:00
|
|
|
{ B{ 34 13 } } [ test-data internet checksum-bytes ] unit-test
|