~zorba-coders/zorba/bugs-912586-912593-912722

« back to all changes in this revision

Viewing changes to swig/ruby/tests/test04.rb

  • Committer: Cezar Andrei
  • Date: 2012-03-28 15:42:12 UTC
  • mfrom: (10606.1.129 zorba)
  • Revision ID: cezar.lp@cezarandrei.com-20120328154212-jh2heq49xcqjppce
Merge from trunck and resolve ChangeLog conflict.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright 2006-2012 The FLWOR Foundation.
 
2
 
3
# Licensed under the Apache License, Version 2.0 (the "License");
 
4
# you may not use this file except in compliance with the License.
 
5
# You may obtain a copy of the License at
 
6
 
7
# http://www.apache.org/licenses/LICENSE-2.0
 
8
 
9
# Unless required by applicable law or agreed to in writing, software
 
10
# distributed under the License is distributed on an "AS IS" BASIS,
 
11
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
12
# See the License for the specific language governing permissions and
 
13
# limitations under the License.
 
14
 
 
15
require '@rubyPath@/zorba_api'
 
16
 
 
17
def test(zorba)
 
18
  print 'Executing: test04.xq'
 
19
  file = File.open("test04.xq", "rb")
 
20
  contents = file.read
 
21
  xquery = zorba.compileQuery(contents)
 
22
  result = xquery.execute()
 
23
  print result
 
24
  xquery.destroy()
 
25
end
 
26
  
 
27
store = Zorba_api::InMemoryStore.getInstance()
 
28
zorba = Zorba_api::Zorba.getInstance(store)
 
29
 
 
30
print "Running: XQuery execute"
 
31
test(zorba)
 
32
print "Success"
 
33
 
 
34
zorba.shutdown()
 
35
Zorba_api::InMemoryStore.shutdown(store)