# coding: utf-8 require 'rspec' require './arangodb.rb' describe ArangoDB do api = "/_api/simple" prefix = "api-simple" context "simple queries:" do ################################################################################ ## all query ################################################################################ context "all query (will take a while when using ssl):" do before do @cn = "UnitTestsCollectionSimple" ArangoDB.drop_collection(@cn) @cid = ArangoDB.create_collection(@cn, false) (0...1500).each{|i| ArangoDB.post("/_api/document?collection=#{@cid}", :body => "{ \"n\" : #{i} }") } end after do ArangoDB.drop_collection(@cn) end it "get all documents" do cmd = api + "/all" body = "{ \"collection\" : \"#{@cid}\" }" doc = ArangoDB.log_put("#{prefix}-all", cmd, :body => body) doc.code.should eq(201) doc.headers['content-type'].should eq("application/json") doc.parsed_response['error'].should eq(false) doc.parsed_response['code'].should eq(201) doc.parsed_response['hasMore'].should eq(true) doc.parsed_response['result'].length.should eq(1000) doc.parsed_response['count'].should eq(1500) end it "get all documents with limit" do cmd = api + "/all" body = "{ \"collection\" : \"#{@cid}\", \"limit\" : 100 }" doc = ArangoDB.log_put("#{prefix}-all-limit", cmd, :body => body) doc.code.should eq(201) doc.headers['content-type'].should eq("application/json") doc.parsed_response['error'].should eq(false) doc.parsed_response['code'].should eq(201) doc.parsed_response['hasMore'].should eq(false) doc.parsed_response['result'].length.should eq(100) doc.parsed_response['count'].should eq(100) end it "get all documents with negative skip" do cmd = api + "/all" body = "{ \"collection\" : \"#{@cid}\", \"skip\" : -100 }" doc = ArangoDB.log_put("#{prefix}-all-negative-limit", cmd, :body => body) doc.code.should eq(201) doc.headers['content-type'].should eq("application/json") doc.parsed_response['error'].should eq(false) doc.parsed_response['code'].should eq(201) doc.parsed_response['hasMore'].should eq(false) doc.parsed_response['result'].length.should eq(100) doc.parsed_response['count'].should eq(100) end it "get all documents with skip" do cmd = api + "/all" body = "{ \"collection\" : \"#{@cid}\", \"skip\" : 1400 }" doc = ArangoDB.log_put("#{prefix}-all-skip", cmd, :body => body) doc.code.should eq(201) doc.headers['content-type'].should eq("application/json") doc.parsed_response['error'].should eq(false) doc.parsed_response['code'].should eq(201) doc.parsed_response['hasMore'].should eq(false) doc.parsed_response['result'].length.should eq(100) doc.parsed_response['count'].should eq(100) end it "get all documents with skip and limit" do cmd = api + "/all" body = "{ \"collection\" : \"#{@cid}\", \"skip\" : 1400, \"limit\" : 2 }" doc = ArangoDB.log_put("#{prefix}-all-skip-limit", cmd, :body => body) doc.code.should eq(201) doc.headers['content-type'].should eq("application/json") doc.parsed_response['error'].should eq(false) doc.parsed_response['code'].should eq(201) doc.parsed_response['hasMore'].should eq(false) doc.parsed_response['result'].length.should eq(2) doc.parsed_response['count'].should eq(2) end end ################################################################################ ## geo near query ################################################################################ context "geo query:" do before do @cn = "UnitTestsCollectionGeo" ArangoDB.drop_collection(@cn) @cid = ArangoDB.create_collection(@cn, false) (0..10).each{|i| lat = 10 * (i - 5) (0..10).each{|j| lon = 10 * (j - 5) ArangoDB.post("/_api/document?collection=#{@cid}", :body => "{ \"loc\" : [ #{lat}, #{lon} ] }") } } end after do ArangoDB.drop_collection(@cn) end it "returns an error for near without index" do cmd = api + "/near" body = "{ \"collection\" : \"#{@cid}\", \"latitude\" : 0, \"longitude\" : 0, \"skip\" : 1, \"limit\" : 5 }" doc = ArangoDB.log_put("#{prefix}-near-missing", cmd, :body => body) doc.code.should eq(400) doc.headers['content-type'].should eq("application/json") doc.parsed_response['error'].should eq(true) doc.parsed_response['code'].should eq(400) doc.parsed_response['errorNum'].should eq(1570) end it "returns documents near a point" do cmd = "/_api/index?collection=#{@cid}" body = "{ \"type\" : \"geo\", \"fields\" : [ \"loc\" ] }" doc = ArangoDB.post(cmd, :body => body) cmd = api + "/near" body = "{ \"collection\" : \"#{@cid}\", \"latitude\" : 0, \"longitude\" : 0, \"skip\" : 1, \"limit\" : 5 }" doc = ArangoDB.log_put("#{prefix}-near", cmd, :body => body) doc.code.should eq(201) doc.headers['content-type'].should eq("application/json") doc.parsed_response['error'].should eq(false) doc.parsed_response['code'].should eq(201) doc.parsed_response['hasMore'].should eq(false) doc.parsed_response['result'].length.should eq(5) doc.parsed_response['count'].should eq(5) end it "returns documents and distance near a point" do cmd = "/_api/index?collection=#{@cid}" body = "{ \"type\" : \"geo\", \"fields\" : [ \"loc\" ] }" doc = ArangoDB.post(cmd, :body => body) cmd = api + "/near" body = "{ \"collection\" : \"#{@cid}\", \"latitude\" : 0, \"longitude\" : 0, \"limit\" : 5, \"distance\" : \"distance\" }" doc = ArangoDB.log_put("#{prefix}-near-distance", cmd, :body => body) doc.code.should eq(201) doc.headers['content-type'].should eq("application/json") doc.parsed_response['error'].should eq(false) doc.parsed_response['code'].should eq(201) doc.parsed_response['hasMore'].should eq(false) doc.parsed_response['result'].length.should eq(5) doc.parsed_response['count'].should eq(5) doc.parsed_response['result'].map{|i| i['distance'].floor.to_f}.should eq([0,1111949,1111949,1111949,1111949]) end end ################################################################################ ## geo within query ################################################################################ context "geo query:" do before do @cn = "UnitTestsCollectionGeo" ArangoDB.drop_collection(@cn) @cid = ArangoDB.create_collection(@cn, false) (0..10).each{|i| lat = 10 * (i - 5) (0..10).each{|j| lon = 10 * (j - 5) ArangoDB.post("/_api/document?collection=#{@cid}", :body => "{ \"loc\" : [ #{lat}, #{lon} ] }") } } end after do ArangoDB.drop_collection(@cn) end it "returns an error for within without index" do cmd = api + "/within" body = "{ \"collection\" : \"#{@cid}\", \"latitude\" : 0, \"longitude\" : 0, \"skip\" : 1, \"limit\" : 5 }" doc = ArangoDB.log_put("#{prefix}-within-missing", cmd, :body => body) doc.code.should eq(400) doc.headers['content-type'].should eq("application/json") doc.parsed_response['error'].should eq(true) doc.parsed_response['code'].should eq(400) doc.parsed_response['errorNum'].should eq(1570) end it "returns documents within a radius" do cmd = "/_api/index?collection=#{@cid}" body = "{ \"type\" : \"geo\", \"fields\" : [ \"loc\" ] }" doc = ArangoDB.post(cmd, :body => body) cmd = api + "/within" body = "{ \"collection\" : \"#{@cid}\", \"latitude\" : 0, \"longitude\" : 0, \"skip\" : 1, \"radius\" : 1111950 }" doc = ArangoDB.log_put("#{prefix}-within", cmd, :body => body) doc.code.should eq(201) doc.headers['content-type'].should eq("application/json") doc.parsed_response['error'].should eq(false) doc.parsed_response['code'].should eq(201) doc.parsed_response['hasMore'].should eq(false) doc.parsed_response['result'].length.should eq(4) doc.parsed_response['count'].should eq(4) end it "returns documents and distance within a radius" do cmd = "/_api/index?collection=#{@cid}" body = "{ \"type\" : \"geo\", \"fields\" : [ \"loc\" ] }" doc = ArangoDB.post(cmd, :body => body) cmd = api + "/within" body = "{ \"collection\" : \"#{@cid}\", \"latitude\" : 0, \"longitude\" : 0, \"distance\" : \"distance\", \"radius\" : 1111950 }" doc = ArangoDB.log_put("#{prefix}-within-distance", cmd, :body => body) doc.code.should eq(201) doc.headers['content-type'].should eq("application/json") doc.parsed_response['error'].should eq(false) doc.parsed_response['code'].should eq(201) doc.parsed_response['hasMore'].should eq(false) doc.parsed_response['result'].length.should eq(5) doc.parsed_response['count'].should eq(5) doc.parsed_response['result'].map{|i| i['distance'].floor.to_f}.should eq([0,1111949,1111949,1111949,1111949]) end end ################################################################################ ## by-example query ################################################################################ context "by-example query:" do before do @cn = "UnitTestsCollectionByExample" ArangoDB.drop_collection(@cn) @cid = ArangoDB.create_collection(@cn, false) end after do ArangoDB.drop_collection(@cn) end it "finds the examples" do body = "{ \"i\" : 1 }" doc = ArangoDB.post("/_api/document?collection=#{@cid}", :body => body) doc.code.should eq(202) d1 = doc.parsed_response['_id'] body = "{ \"i\" : 1, \"a\" : { \"j\" : 1 } }" doc = ArangoDB.post("/_api/document?collection=#{@cid}", :body => body) doc.code.should eq(202) d2 = doc.parsed_response['_id'] body = "{ \"i\" : 1, \"a\" : { \"j\" : 1, \"k\" : 1 } }" doc = ArangoDB.post("/_api/document?collection=#{@cid}", :body => body) doc.code.should eq(202) d3 = doc.parsed_response['_id'] body = "{ \"i\" : 1, \"a\" : { \"j\" : 2, \"k\" : 2 } }" doc = ArangoDB.post("/_api/document?collection=#{@cid}", :body => body) doc.code.should eq(202) d4 = doc.parsed_response['_id'] body = "{ \"i\" : 2 }" doc = ArangoDB.post("/_api/document?collection=#{@cid}", :body => body) doc.code.should eq(202) d5 = doc.parsed_response['_id'] body = "{ \"i\" : 2, \"a\" : 2 }" doc = ArangoDB.post("/_api/document?collection=#{@cid}", :body => body) doc.code.should eq(202) d6 = doc.parsed_response['_id'] body = "{ \"i\" : 2, \"a\" : { \"j\" : 2, \"k\" : 2 } }" doc = ArangoDB.post("/_api/document?collection=#{@cid}", :body => body) doc.code.should eq(202) d7 = doc.parsed_response['_id'] cmd = api + "/by-example" body = "{ \"collection\" : \"#{@cid}\", \"example\" : { \"i\" : 1 } }" doc = ArangoDB.log_put("#{prefix}-by-example1", cmd, :body => body) doc.code.should eq(201) doc.headers['content-type'].should eq("application/json") doc.parsed_response['error'].should eq(false) doc.parsed_response['code'].should eq(201) doc.parsed_response['hasMore'].should eq(false) doc.parsed_response['result'].length.should eq(4) doc.parsed_response['count'].should eq(4) doc.parsed_response['result'].map{|i| i['_id']}.should =~ [d1,d2,d3,d4] cmd = api + "/by-example" body = "{ \"collection\" : \"#{@cid}\", \"example\" : { \"a\" : { \"j\" : 1 } } }" doc = ArangoDB.log_put("#{prefix}-by-example2", cmd, :body => body) doc.code.should eq(201) doc.headers['content-type'].should eq("application/json") doc.parsed_response['error'].should eq(false) doc.parsed_response['code'].should eq(201) doc.parsed_response['hasMore'].should eq(false) doc.parsed_response['result'].length.should eq(1) doc.parsed_response['count'].should eq(1) doc.parsed_response['result'].map{|i| i['_id']}.should =~ [d2] cmd = api + "/by-example" body = "{ \"collection\" : \"#{@cid}\", \"example\" : { \"a.j\" : 1 } }" doc = ArangoDB.log_put("#{prefix}-by-example3", cmd, :body => body) doc.code.should eq(201) doc.headers['content-type'].should eq("application/json") doc.parsed_response['error'].should eq(false) doc.parsed_response['code'].should eq(201) doc.parsed_response['hasMore'].should eq(false) doc.parsed_response['result'].length.should eq(2) doc.parsed_response['count'].should eq(2) doc.parsed_response['result'].map{|i| i['_id']}.should =~ [d2,d3] cmd = api + "/first-example" body = "{ \"collection\" : \"#{@cid}\", \"example\" : { \"a.j\" : 1, \"a.k\" : 1 } }" doc = ArangoDB.log_put("#{prefix}-first-example", cmd, :body => body) doc.code.should eq(200) doc.headers['content-type'].should eq("application/json") doc.parsed_response['error'].should eq(false) doc.parsed_response['code'].should eq(200) doc.parsed_response['document']['_id'].should eq(d3) cmd = api + "/first-example" body = "{ \"collection\" : \"#{@cid}\", \"example\" : { \"a.j\" : 1, \"a.k\" : 2 } }" doc = ArangoDB.log_put("#{prefix}-first-example-not-found", cmd, :body => body) doc.code.should eq(404) doc.headers['content-type'].should eq("application/json") doc.parsed_response['error'].should eq(true) doc.parsed_response['code'].should eq(404) end end ################################################################################ ## range query ################################################################################ context "range query:" do before do @cn = "UnitTestsCollectionRange" ArangoDB.drop_collection(@cn) @cid = ArangoDB.create_collection(@cn, false) end after do ArangoDB.drop_collection(@cn) end it "finds the examples" do # create data for i in [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ] body = "{ \"i\" : #{i} }" doc = ArangoDB.post("/_api/document?collection=#{@cid}", :body => body) doc.code.should eq(202) end # create index cmd = "/_api/index?collection=#{@cid}" body = "{ \"type\" : \"skiplist\", \"unique\" : true, \"fields\" : [ \"i\" ] }" doc = ArangoDB.log_post("#{prefix}-skiplist-index", cmd, :body => body) doc.code.should eq(201) doc.parsed_response['type'].should eq("skiplist") doc.parsed_response['unique'].should eq(true) # range cmd = api + "/range" body = "{ \"collection\" : \"#{@cid}\", \"attribute\" : \"i\", \"left\" : 2, \"right\" : 4 }" doc = ArangoDB.log_put("#{prefix}-range", cmd, :body => body) doc.code.should eq(201) doc.headers['content-type'].should eq("application/json") doc.parsed_response['error'].should eq(false) doc.parsed_response['code'].should eq(201) doc.parsed_response['hasMore'].should eq(false) doc.parsed_response['result'].length.should eq(2) doc.parsed_response['count'].should eq(2) doc.parsed_response['result'].map{|i| i['i']}.should =~ [2,3] # closed range cmd = api + "/range" body = "{ \"collection\" : \"#{@cid}\", \"attribute\" : \"i\", \"left\" : 2, \"right\" : 4, \"closed\" : true }" doc = ArangoDB.log_put("#{prefix}-range", cmd, :body => body) doc.code.should eq(201) doc.headers['content-type'].should eq("application/json") doc.parsed_response['error'].should eq(false) doc.parsed_response['code'].should eq(201) doc.parsed_response['hasMore'].should eq(false) doc.parsed_response['result'].length.should eq(3) doc.parsed_response['count'].should eq(3) doc.parsed_response['result'].map{|i| i['i']}.should =~ [2,3,4] end end end end