webapps.mason: fix counter and dashboard actions, add more comprehensive tests

db4
Slava Pestov 2010-09-30 20:35:35 -07:00
parent 8a0d0fca83
commit e6de81706b
3 changed files with 11 additions and 9 deletions

View File

@ -5,11 +5,15 @@ IN: webapps.mason.backend.tests
[ "test.db" temp-file delete-file ] ignore-errors
[ 0 1 2 ] [
! Do it in a with-transaction to simulate semantics of
! with-mason-db
"test.db" temp-file <sqlite-db> [
init-mason-db
[
init-mason-db
counter-value
increment-counter-value
increment-counter-value
counter-value
increment-counter-value
increment-counter-value
] with-transaction
] with-db
] unit-test

View File

@ -58,12 +58,10 @@ counter "COUNTER" {
[ counter new dup insert-tuple ] unless* ;
: counter-value ( -- n )
[ counter-tuple value>> 0 or ] with-transaction ;
counter-tuple value>> 0 or ;
: increment-counter-value ( -- n )
[
counter-tuple [ 0 or 1 + dup ] change-value update-tuple
] with-transaction ;
counter-tuple [ 0 or 1 + dup ] change-value update-tuple ;
: funny-builders ( -- crashed broken )
builder new select-tuples

View File

@ -18,7 +18,7 @@ IN: webapps.mason.downloads
[
[
funny-builders
[ builder-list ] tri@
[ builder-list ] bi@
[ "crashed" set-value ]
[ "broken" set-value ] bi*
] with-mason-db