;;======================================================================
;; S E R V E R
;;======================================================================
;; Copyright 2006-2017, Matthew Welland.
;;
;; This file is part of Megatest.
;;
;; Megatest is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;;
;; Megatest is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with Megatest. If not, see <http://www.gnu.org/licenses/>.
;; Run like this:
;;
;; (cd ..;make && make install) && ./rununittest.sh server 1;(cd simplerun;megatest -stop-server 0)
(test #f #t (vector? (make-dbr:dbstruct "/tmp")))
(define dbstruct (make-dbr:dbstruct "/tmp"))
(test #f #t (begin (dbr:dbstruct-set-main! dbstruct "blah") #t))
(test #f "blah" (dbr:dbstruct-get-main dbstruct))
(for-each
(lambda (run-id)
(test #f #t (vector? (dbr:dbstruct-get-rundb-rec dbstruct run-id))))
(list 1 2 3 4 5 6 7 8 9 #f))
(test #f 0 (dbr:dbstruct-field-name->num 'rundb))
(test #f 1 (dbr:dbstruct-field-name->num 'inmem))
(test #f 2 (dbr:dbstruct-field-name->num 'mtime))
(test #f #f (dbr:dbstruct-get-runvec-val dbstruct 1 'rundb))
(test #f #t (begin (dbr:dbstruct-set-runvec-val! dbstruct 1 'rundb "rundb") #t))
(test #f "rundb" (dbr:dbstruct-get-runvec-val dbstruct 1 'rundb))
(for-each
(lambda (k)
(test #f #t (begin (dbr:dbstruct-set-runvec-val! dbstruct 1 k (conc k)) #t))
(test #f (conc k) (dbr:dbstruct-get-runvec-val dbstruct 1 k)))
'(rundb inmem mtime rtime stime inuse))