2009-03-18 18:43:49 -04:00
|
|
|
! Copyright (C) 2009 Doug Coleman.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2015-10-03 21:41:32 -04:00
|
|
|
USING: continuations db db.tuples io.directories io.files.temp kernel
|
|
|
|
locals sequences site-watcher.db tools.test webapps.utils ;
|
2009-03-18 18:43:49 -04:00
|
|
|
IN: site-watcher.tests
|
|
|
|
|
2016-07-10 23:28:46 -04:00
|
|
|
"site-watcher.db" temp-file ?delete-file
|
2009-03-23 23:33:05 -04:00
|
|
|
|
2009-03-18 18:43:49 -04:00
|
|
|
:: fake-sites ( -- seq )
|
2015-10-03 21:41:32 -04:00
|
|
|
"site-watcher.db" <temp-sqlite-db> [
|
2009-03-18 18:43:49 -04:00
|
|
|
account ensure-table
|
|
|
|
site ensure-table
|
|
|
|
watching-site ensure-table
|
|
|
|
|
2009-03-25 12:20:21 -04:00
|
|
|
"erg" "erg@factorcode.org" insert-account
|
2009-03-18 18:45:33 -04:00
|
|
|
"http://asdfasdfasdfasdfqwerqqq.com" insert-site drop
|
|
|
|
"http://fark.com" insert-site drop
|
2009-03-18 18:43:49 -04:00
|
|
|
|
|
|
|
"erg@factorcode.org" "http://asdfasdfasdfasdfqwerqqq.com" watch-site
|
|
|
|
f <site> select-tuples
|
2009-03-23 23:33:05 -04:00
|
|
|
] with-db ;
|
2009-03-18 18:43:49 -04:00
|
|
|
|
2015-07-03 12:39:59 -04:00
|
|
|
{ f } [ fake-sites empty? ] unit-test
|