X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=tests%2Ftest-init.lisp;h=d77505476aed0fd3fee86f4a5c97e3629b95f98a;hb=36509b8d390e94b2b0f8e681c09d5e89452978d8;hp=2da19aa2dd46af892edcbe045fff3e28802cefd7;hpb=ebfa7f4dffe513c639b84b28135c5bbc92d43d61;p=clsql.git diff --git a/tests/test-init.lisp b/tests/test-init.lisp index 2da19aa..d775054 100644 --- a/tests/test-init.lisp +++ b/tests/test-init.lisp @@ -48,7 +48,7 @@ (def-view-class employee (person) ((emplid :db-kind :key - :db-constraints :not-null + :db-constraints (:not-null :unique) :type integer :initarg :emplid) (groupid @@ -164,6 +164,11 @@ :db-info (:join-class address :home-key aaddressid :foreign-key addressid + :retrieval :immediate)) + (employee :db-kind :join + :db-info (:join-class employee + :home-key aemplid + :foreign-key emplid :retrieval :immediate))) (:base-table "ea_join")) @@ -254,7 +259,7 @@ :height (1+ (random 1.00)) :bd-utime *test-start-utime* :birthday now-time - :first-name "Vladamir" + :first-name "Vladimir" :last-name "Lenin" :email "lenin@soviet.org" :companyid 1) @@ -361,7 +366,7 @@ :height (1+ (random 1.00)) :bd-utime *test-start-utime* :birthday now-time - :first-name "Vladamir" + :first-name "Vladimir" :last-name "Putin" :email "putin@soviet.org" :managerid 1 @@ -579,6 +584,11 @@ :fdml/select/21 :fdml/select/32 :fdml/select/33)) (push (cons test "not supported by sqlite") skip-tests)) + ((and (eql *test-database-type* :sqlite3) + (clsql-sys:in test :fddl/view/4 :fdml/select/10 + :fdml/select/21 :fdml/select/32 + :fdml/select/33)) + (push (cons test "not supported by sqlite3") skip-tests)) ((and (not (clsql-sys:db-type-has-bigint? db-type)) (clsql-sys:in test :basic/bigint/1)) (push (cons test "bigint not supported") skip-tests)) @@ -593,11 +603,16 @@ (clsql-sys:in test :fdml/query/6 :fdml/select/31)) (push (cons test "union not supported") skip-tests)) ((and (eq *test-database-type* :oracle) - (clsql-sys:in test :fdml/query/8 :fdml/select/21)) + (clsql-sys:in test :fdml/query/8 :fdml/select/21 + :fddl/table/6)) (push (cons test "syntax not supported") skip-tests)) - ((and (not (member *test-database-underlying-type* + ((and (eq *test-database-type* :odbc) + (eq *test-database-underlying-type* :postgresql) + (clsql-sys:in test :fddl/owner/1)) + (push (cons test "table ownership not supported by postgresql odbc driver") skip-tests)) + ((and (not (member *test-database-underlying-type* '(:postgresql :oracle))) - (clsql-sys:in test :fddl/owner/1)) + (clsql-sys:in test :fddl/owner/1)) (push (cons test "table ownership not supported") skip-tests)) (t (push test-form test-forms)))))