Mercurial Hosting > luan
view scripts/test.luan @ 328:71e4f4ce74a3
load "site:/init" on webserver initialization
git-svn-id: https://luan-java.googlecode.com/svn/trunk@329 21e917c8-12df-6dd8-5cb6-c86387c605b9
author | fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9> |
---|---|
date | Thu, 19 Mar 2015 07:18:49 +0000 |
parents | cd2924a1052c |
children | 5b36f663a1b8 |
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 "/web_run" assert( page.trim() == "hi" ) Http.init_for_test() Http.request.parameters.cmd = "'ab'..'cd'" page = Http.get_page "/web_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"