-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
84 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module Neography | ||
VERSION = "1.4.1" | ||
VERSION = "1.4.2" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
require 'spec_helper' | ||
|
||
describe Neography::Rest do | ||
before(:each) do | ||
@neo = Neography::Rest.new | ||
end | ||
|
||
describe "no streaming" do | ||
|
||
it "can send a 1000 item batch" do | ||
commands = [] | ||
1000.times do |x| | ||
commands << [:create_node, {"name" => "Max " + x.to_s}] | ||
end | ||
batch_result = @neo.batch_no_streaming *commands | ||
batch_result.first["body"]["data"]["name"].should == "Max 0" | ||
batch_result.last["body"]["data"]["name"].should == "Max 999" | ||
end | ||
|
||
it "can send a 5000 item batch" do | ||
commands = [] | ||
5000.times do |x| | ||
commands << [:get_node, 0] | ||
end | ||
batch_result = @neo.batch_no_streaming *commands | ||
batch_result.first["body"]["self"].split('/').last.should == "0" | ||
batch_result.last["body"]["self"].split('/').last.should == "0" | ||
end | ||
|
||
it "can send a 20000 item batch" do | ||
commands = [] | ||
20000.times do |x| | ||
commands << [:create_node, {"name" => "Max " + x.to_s}] | ||
end | ||
batch_result = @neo.batch_no_streaming *commands | ||
batch_result.first["body"]["data"]["name"].should == "Max 0" | ||
batch_result.last["body"]["data"]["name"].should == "Max 19999" | ||
end | ||
end | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters