2008-03-19 06:22:15 -04:00
|
|
|
USING: accessors arrays continuations db db.sqlite db.tuples io.files
|
|
|
|
kernel math namespaces semantic-db
|
|
|
|
|
|
|
|
sequences sorting tools.test tools.walker ;
|
2008-03-07 18:07:11 -05:00
|
|
|
IN: semantic-db.tests
|
2008-02-18 20:12:10 -05:00
|
|
|
|
2008-03-19 06:22:15 -04:00
|
|
|
SYMBOL: context
|
|
|
|
|
2008-03-10 20:44:03 -04:00
|
|
|
: db-path "semantic-db-test.db" temp-file ;
|
|
|
|
: test-db db-path sqlite-db ;
|
|
|
|
: delete-db [ db-path delete-file ] ignore-errors ;
|
|
|
|
|
|
|
|
delete-db
|
|
|
|
|
|
|
|
test-db [
|
2008-03-20 11:01:58 -04:00
|
|
|
node create-table arc create-table
|
2008-03-19 06:22:15 -04:00
|
|
|
[ 1 ] [ "first node" create-node ] unit-test
|
|
|
|
[ 2 ] [ "second node" create-node ] unit-test
|
|
|
|
[ 3 ] [ "third node" create-node ] unit-test
|
|
|
|
[ 4 ] [ f create-node ] unit-test
|
|
|
|
[ 5 ] [ 1 2 3 create-arc ] unit-test
|
2008-03-20 11:01:58 -04:00
|
|
|
] with-db delete-db
|
2008-02-28 21:51:59 -05:00
|
|
|
|
2008-03-25 02:38:14 -04:00
|
|
|
test-db [
|
|
|
|
init-semantic-db
|
|
|
|
"test content" create-context context set
|
|
|
|
[ 4 ] [ context get ] unit-test
|
|
|
|
[ 5 ] [ "is test content" context get create-relation ] unit-test
|
|
|
|
[ 5 ] [ "is test content" context get get-relation ] unit-test
|
|
|
|
[ 5 ] [ "is test content" context get relation-id ] unit-test
|
|
|
|
[ 7 ] [ "has parent" context get relation-id ] unit-test
|
|
|
|
[ 7 ] [ "has parent" context get relation-id ] unit-test
|
|
|
|
[ "has parent" ] [ "has parent" context get relation-id node-content ] unit-test
|
|
|
|
[ "test content" ] [ context get node-content ] unit-test
|
|
|
|
] with-db delete-db
|
|
|
|
|
|
|
|
! "test1" f f f f f <relation-definition> define-relation
|
|
|
|
! "test2" t t t t t <relation-definition> define-relation
|
|
|
|
RELATION: test
|
|
|
|
test-db [
|
|
|
|
init-semantic-db
|
|
|
|
[ 5 ] [ test-relation ] unit-test
|
|
|
|
] with-db delete-db
|
|
|
|
|
|
|
|
! test hierarchy
|
|
|
|
RELATION: has-parent
|
|
|
|
test-db [
|
|
|
|
init-semantic-db
|
|
|
|
"adam" create-node "adam" set
|
|
|
|
"eve" create-node "eve" set
|
|
|
|
"bob" create-node "bob" set
|
|
|
|
"fran" create-node "fran" set
|
|
|
|
"charlie" create-node "charlie" set
|
|
|
|
"gertrude" create-node "gertrude" set
|
|
|
|
[ t ] [ "bob" get "adam" get has-parent integer? ] unit-test
|
|
|
|
{ { "bob" "eve" } { "fran" "eve" } { "gertrude" "bob" } { "fran" "bob" } { "charlie" "fran" } } [ first2 [ get ] 2apply has-parent drop ] each
|
|
|
|
[ { "bob" "fran" } ] [ "eve" get has-parent-relation children [ node-content ] map ] unit-test
|
|
|
|
[ { "adam" "eve" } ] [ "bob" get has-parent-relation parents [ node-content ] map ] unit-test
|
|
|
|
[ "fran" { "charlie" } ] [ "fran" get has-parent-relation get-node-hierarchy dup tree-id node-content swap tree-children [ tree-id node-content ] map ] unit-test
|
|
|
|
[ { "adam" "eve" } ] [ "charlie" get has-parent-relation get-root-nodes [ node-content ] map natural-sort >array ] unit-test
|
|
|
|
[ { } ] [ "charlie" get dup "fran" get !has-parent has-parent-relation parents [ node-content ] map ] unit-test
|
|
|
|
] with-db delete-db
|
|
|
|
|