]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/pack/pack-tests.factor
ui.listener: document that ~/.factor-history persists input history
[factor.git] / basis / pack / pack-tests.factor
index 999a9521748834eb1523aa0f3f9f90d407ed4829..e07783d10a9d820c992454873cacd86f0dc88ab9 100644 (file)
@@ -1,44 +1,44 @@
-USING: io io.streams.string kernel namespaces make
-pack strings tools.test pack.private ;
-IN: pack.tests
+USING: alien.c-types io io.streams.string kernel make namespaces
+pack pack.private strings tools.test ;
 
-[ B{ 1 0 2 0 0 3 0 0 0 4 0 0 0 0 0 0 0 5 } ] [
+{ B{ 1 0 2 0 0 3 0 0 0 4 0 0 0 0 0 0 0 5 } } [
     { 1 2 3 4 5 }
     "cstiq" pack-be
 ] unit-test
 
-[ { 1 2 3 4 5 } ] [
+{ { 1 2 3 4 5 } } [
     { 1 2 3 4 5 }
     "cstiq" [ pack-be ] keep unpack-be
 ] unit-test
 
-[ B{ 1 2 0 3 0 0 4 0 0 0 5 0 0 0 0 0 0 0 } ] [
-    [
-        { 1 2 3 4 5 } "cstiq" pack-le
-    ] with-scope
+{ B{ 1 2 0 3 0 0 4 0 0 0 5 0 0 0 0 0 0 0 } } [
+    { 1 2 3 4 5 } "cstiq" pack-le
 ] unit-test
 
-[ { 1 2 3 4 5 } ] [
+{ { 1 2 3 4 5 } } [
     { 1 2 3 4 5 }
     "cstiq" [ pack-le ] keep unpack-le
 ] unit-test
 
-[ { -1 -2 -3 -4 -5 } ] [
+{ { -1 -2 -3 -4 -5 } } [
     { -1 -2 -3 -4 -5 }
     "cstiq" [ pack-le ] keep unpack-le
 ] unit-test
 
-[ { -1 -2 -3 -4 -5 3.14 } ] [
+{ { -1 -2 -3 -4 -5 3.14 } } [
     { -1 -2 -3 -4 -5 3.14 }
     "cstiqd" [ pack-be ] keep unpack-be
 ] unit-test
 
-[ { -1 -2 -3 -4 -5 } ] [
+{ { -1 -2 -3 -4 -5 } } [
     { -1 -2 -3 -4 -5 }
     "cstiq" [ pack-native ] keep unpack-native
 ] unit-test
 
-[ 9 ] [ "iic" packed-length ] unit-test
+{ B{ 1 2 3 4 5 0 0 0 } } [ { 1 2 3 4 5 } "4ci" pack-le ] unit-test
+{ { 1 2 3 4 5 } } [ B{ 1 2 3 4 5 0 0 0 } "4ci" unpack-le ] unit-test
+
+{ 9 } [ "iic" packed-length ] unit-test
 [ "iii" read-packed-le ] must-infer
 [ "iii" read-packed-be ] must-infer
 [ "iii" read-packed-native ] must-infer
@@ -48,7 +48,11 @@ IN: pack.tests
 [ "iii" pack ] must-infer
 [ "iii" unpack ] must-infer
 
-: test-pack ( str -- ba )
-    "iii" pack ;
+[ "iii" pack ] must-infer
+
+{ "c" } [ "1c" expand-pack-format ] unit-test
+{ "cccc" } [ "4c" expand-pack-format ] unit-test
+{ "cccccccccccc" } [ "12c" expand-pack-format ] unit-test
+{ "iccqqq" } [ "1i2c3q" expand-pack-format ] unit-test
 
-[ test-pack ] must-infer
+{ B{ 1 0 0 0 } } [ 1 int32_t >n-byte-array ] unit-test