Mercurial Hosting > luan
view scripts/test.luan @ 462:2e79b47d02a2
remove all command line options;
add add_extension boolean arg to scheme fns;
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Wed, 06 May 2015 16:54:20 -0600 |
parents | 5b36f663a1b8 |
children | 2b9bc97f0439 |
line wrap: on
line source
local Luan = require "luan:Luan" local assert = Luan.assert local range = Luan.range local Io = require "luan:Io" local Http = require "luan:web/Http" local Lucene = require "luan:lucene/Lucene" local Ab_testing = require "luan:lucene/Ab_testing" local function print(...) Io.print_to(Io.stderr,...) end function Io.schemes.site(path) return Io.uri( "luan:web"..path ) end Http.init_for_test() Http.request.parameters.code = "require('luan:Io').print 'hi'" page = Http.get_page "/run" assert( page.trim() == "hi" ) Http.init_for_test() Http.request.parameters.cmd = "'ab'..'cd'" page = Http.get_page "/shell" assert( page.find "abcd" ) -- lucene this_file = Io.schemes.file(Luan.arg[0]) this_dir = this_file.parent() lucene_dir = this_dir.parent().child("build").child("lucene_test") --print(lucene_dir.to_string()) db = Lucene.index(lucene_dir.to_string()) db.delete_all() ab_testing = Ab_testing.of(db) test_events = {"all"} aggregator_factories = { all = Ab_testing.count_all; } ab_testing.test{ name="All", values={"all"}, events=test_events, aggregator_factories=aggregator_factories } ab_testing.test{ name="null", values={"A","B"}, events=test_events, aggregator_factories=aggregator_factories } for record in range(1,10) do local doc = {type="test"} ab_testing.to_doc(doc) db.save_document(doc) end Http.init_for_test() ab_testing.web_page{"All","null"}.service() print "done"