summaryrefslogtreecommitdiff
path: root/spec/ruby/library/stringscanner
diff options
context:
space:
mode:
authoreregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-09-20 20:18:52 +0000
committereregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-09-20 20:18:52 +0000
commit1d15d5f08032acf1b7bceacbb450d617ff6e0931 (patch)
treea3785a79899302bc149e4a6e72f624ac27dc1f10 /spec/ruby/library/stringscanner
parent75bfc6440d595bf339007f4fb280fd4d743e89c1 (diff)
Move spec/rubyspec to spec/ruby for consistency
* Other ruby implementations use the spec/ruby directory. [Misc #13792] [ruby-core:82287] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59979 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'spec/ruby/library/stringscanner')
-rw-r--r--spec/ruby/library/stringscanner/append_spec.rb11
-rw-r--r--spec/ruby/library/stringscanner/beginning_of_line_spec.rb7
-rw-r--r--spec/ruby/library/stringscanner/bol_spec.rb7
-rw-r--r--spec/ruby/library/stringscanner/check_spec.rb16
-rw-r--r--spec/ruby/library/stringscanner/check_until_spec.rb15
-rw-r--r--spec/ruby/library/stringscanner/clear_spec.rb20
-rw-r--r--spec/ruby/library/stringscanner/concat_spec.rb11
-rw-r--r--spec/ruby/library/stringscanner/dup_spec.rb39
-rw-r--r--spec/ruby/library/stringscanner/element_reference_spec.rb61
-rw-r--r--spec/ruby/library/stringscanner/empty_spec.rb20
-rw-r--r--spec/ruby/library/stringscanner/eos_spec.rb7
-rw-r--r--spec/ruby/library/stringscanner/exist_spec.rb24
-rw-r--r--spec/ruby/library/stringscanner/get_byte_spec.rb7
-rw-r--r--spec/ruby/library/stringscanner/getbyte_spec.rb23
-rw-r--r--spec/ruby/library/stringscanner/getch_spec.rb35
-rw-r--r--spec/ruby/library/stringscanner/initialize_spec.rb28
-rw-r--r--spec/ruby/library/stringscanner/inspect_spec.rb20
-rw-r--r--spec/ruby/library/stringscanner/match_spec.rb28
-rw-r--r--spec/ruby/library/stringscanner/matched_size_spec.rb7
-rw-r--r--spec/ruby/library/stringscanner/matched_spec.rb41
-rw-r--r--spec/ruby/library/stringscanner/must_C_version_spec.rb8
-rw-r--r--spec/ruby/library/stringscanner/peek_spec.rb8
-rw-r--r--spec/ruby/library/stringscanner/peep_spec.rb20
-rw-r--r--spec/ruby/library/stringscanner/pointer_spec.rb11
-rw-r--r--spec/ruby/library/stringscanner/pos_spec.rb11
-rw-r--r--spec/ruby/library/stringscanner/post_match_spec.rb28
-rw-r--r--spec/ruby/library/stringscanner/pre_match_spec.rb41
-rw-r--r--spec/ruby/library/stringscanner/reset_spec.rb15
-rw-r--r--spec/ruby/library/stringscanner/rest_size_spec.rb7
-rw-r--r--spec/ruby/library/stringscanner/rest_spec.rb48
-rw-r--r--spec/ruby/library/stringscanner/restsize_spec.rb20
-rw-r--r--spec/ruby/library/stringscanner/scan_full_spec.rb30
-rw-r--r--spec/ruby/library/stringscanner/scan_spec.rb43
-rw-r--r--spec/ruby/library/stringscanner/scan_until_spec.rb23
-rw-r--r--spec/ruby/library/stringscanner/search_full_spec.rb30
-rw-r--r--spec/ruby/library/stringscanner/shared/bol.rb25
-rw-r--r--spec/ruby/library/stringscanner/shared/concat.rb30
-rw-r--r--spec/ruby/library/stringscanner/shared/eos.rb17
-rw-r--r--spec/ruby/library/stringscanner/shared/extract_range.rb22
-rw-r--r--spec/ruby/library/stringscanner/shared/extract_range_matched.rb22
-rw-r--r--spec/ruby/library/stringscanner/shared/get_byte.rb29
-rw-r--r--spec/ruby/library/stringscanner/shared/matched_size.rb21
-rw-r--r--spec/ruby/library/stringscanner/shared/peek.rb47
-rw-r--r--spec/ruby/library/stringscanner/shared/pos.rb52
-rw-r--r--spec/ruby/library/stringscanner/shared/rest_size.rb18
-rw-r--r--spec/ruby/library/stringscanner/shared/terminate.rb8
-rw-r--r--spec/ruby/library/stringscanner/skip_spec.rb18
-rw-r--r--spec/ruby/library/stringscanner/skip_until_spec.rb18
-rw-r--r--spec/ruby/library/stringscanner/string_spec.rb40
-rw-r--r--spec/ruby/library/stringscanner/terminate_spec.rb7
-rw-r--r--spec/ruby/library/stringscanner/unscan_spec.rb28
51 files changed, 1172 insertions, 0 deletions
diff --git a/spec/ruby/library/stringscanner/append_spec.rb b/spec/ruby/library/stringscanner/append_spec.rb
new file mode 100644
index 0000000000..f75b3cc715
--- /dev/null
+++ b/spec/ruby/library/stringscanner/append_spec.rb
@@ -0,0 +1,11 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require File.expand_path('../shared/concat.rb', __FILE__)
+require 'strscan'
+
+describe "StringScanner#<<" do
+ it_behaves_like :strscan_concat, :<<
+end
+
+describe "StringScanner#<< when passed a Fixnum" do
+ it_behaves_like :strscan_concat_fixnum, :<<
+end
diff --git a/spec/ruby/library/stringscanner/beginning_of_line_spec.rb b/spec/ruby/library/stringscanner/beginning_of_line_spec.rb
new file mode 100644
index 0000000000..192a83f2c9
--- /dev/null
+++ b/spec/ruby/library/stringscanner/beginning_of_line_spec.rb
@@ -0,0 +1,7 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require File.expand_path('../shared/bol.rb', __FILE__)
+require 'strscan'
+
+describe "StringScanner#beginning_of_line?" do
+ it_behaves_like(:strscan_bol, :beginning_of_line?)
+end
diff --git a/spec/ruby/library/stringscanner/bol_spec.rb b/spec/ruby/library/stringscanner/bol_spec.rb
new file mode 100644
index 0000000000..ee5257529a
--- /dev/null
+++ b/spec/ruby/library/stringscanner/bol_spec.rb
@@ -0,0 +1,7 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require File.expand_path('../shared/bol.rb', __FILE__)
+require 'strscan'
+
+describe "StringScanner#bol?" do
+ it_behaves_like(:strscan_bol, :bol?)
+end
diff --git a/spec/ruby/library/stringscanner/check_spec.rb b/spec/ruby/library/stringscanner/check_spec.rb
new file mode 100644
index 0000000000..db98197f81
--- /dev/null
+++ b/spec/ruby/library/stringscanner/check_spec.rb
@@ -0,0 +1,16 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require 'strscan'
+
+describe "StringScanner#check" do
+ before :each do
+ @s = StringScanner.new("This is a test")
+ end
+
+ it "returns the value that scan would return, without advancing the scan pointer" do
+ @s.check(/This/).should == "This"
+ @s.matched.should == "This"
+ @s.pos.should == 0
+ @s.check(/is/).should == nil
+ @s.matched.should == nil
+ end
+end
diff --git a/spec/ruby/library/stringscanner/check_until_spec.rb b/spec/ruby/library/stringscanner/check_until_spec.rb
new file mode 100644
index 0000000000..e397b2e4c1
--- /dev/null
+++ b/spec/ruby/library/stringscanner/check_until_spec.rb
@@ -0,0 +1,15 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require 'strscan'
+
+describe "StringScanner#check_until" do
+ before :each do
+ @s = StringScanner.new("This is a test")
+ end
+
+ it "returns the same value of scan_until, but don't advances the scan pointer" do
+ @s.check_until(/a/).should == "This is a"
+ @s.pos.should == 0
+ @s.matched.should == "a"
+ @s.check_until(/test/).should == "This is a test"
+ end
+end
diff --git a/spec/ruby/library/stringscanner/clear_spec.rb b/spec/ruby/library/stringscanner/clear_spec.rb
new file mode 100644
index 0000000000..81b2e68897
--- /dev/null
+++ b/spec/ruby/library/stringscanner/clear_spec.rb
@@ -0,0 +1,20 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require File.expand_path('../shared/terminate.rb', __FILE__)
+require 'strscan'
+
+describe "StringScanner#clear" do
+ it_behaves_like(:strscan_terminate, :clear)
+
+ it "warns in verbose mode that the method is obsolete" do
+ s = StringScanner.new("abc")
+ lambda {
+ $VERBOSE = true
+ s.clear
+ }.should complain(/clear.*obsolete.*terminate/)
+
+ lambda {
+ $VERBOSE = false
+ s.clear
+ }.should_not complain
+ end
+end
diff --git a/spec/ruby/library/stringscanner/concat_spec.rb b/spec/ruby/library/stringscanner/concat_spec.rb
new file mode 100644
index 0000000000..dccc7d0efd
--- /dev/null
+++ b/spec/ruby/library/stringscanner/concat_spec.rb
@@ -0,0 +1,11 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require File.expand_path('../shared/concat.rb', __FILE__)
+require 'strscan'
+
+describe "StringScanner#concat" do
+ it_behaves_like(:strscan_concat, :concat)
+end
+
+describe "StringScanner#concat when passed a Fixnum" do
+ it_behaves_like(:strscan_concat_fixnum, :concat)
+end
diff --git a/spec/ruby/library/stringscanner/dup_spec.rb b/spec/ruby/library/stringscanner/dup_spec.rb
new file mode 100644
index 0000000000..2f0feff071
--- /dev/null
+++ b/spec/ruby/library/stringscanner/dup_spec.rb
@@ -0,0 +1,39 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require 'strscan'
+
+describe "StringScanner#dup" do
+ before :each do
+ @string = "this is a test"
+ @orig_s = StringScanner.new(@string)
+ end
+
+ it "copies the passed StringScanner's content to self" do
+ s = @orig_s.dup
+ s.string.should == @string
+ end
+
+ it "copies the passed StringSCanner's position to self" do
+ @orig_s.pos = 5
+ s = @orig_s.dup
+ s.pos.should eql(5)
+ end
+
+ it "copies previous match state" do
+ @orig_s.scan(/\w+/)
+ @orig_s.scan(/\s/)
+
+ @orig_s.pre_match.should == "this"
+
+ s = @orig_s.dup
+ s.pre_match.should == "this"
+
+ s.unscan
+ s.scan(/\s/).should == " "
+ end
+
+ it "copies the passed StringScanner scan pointer to self" do
+ @orig_s.terminate
+ s = @orig_s.dup
+ s.eos?.should be_true
+ end
+end
diff --git a/spec/ruby/library/stringscanner/element_reference_spec.rb b/spec/ruby/library/stringscanner/element_reference_spec.rb
new file mode 100644
index 0000000000..c9acb1c7e7
--- /dev/null
+++ b/spec/ruby/library/stringscanner/element_reference_spec.rb
@@ -0,0 +1,61 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require 'strscan'
+
+describe "StringScanner#[]" do
+ before :each do
+ @s = StringScanner.new("Fri Jun 13 2008 22:43")
+ end
+
+ it "returns nil if there is no current match" do
+ @s[0].should be_nil
+ end
+
+ it "returns the n-th subgroup in the most recent match" do
+ @s.scan(/(\w+) (\w+) (\d+) /)
+ @s[0].should == "Fri Jun 13 "
+ @s[1].should == "Fri"
+ @s[2].should == "Jun"
+ @s[3].should == "13"
+ @s[-3].should == "Fri"
+ @s[-2].should == "Jun"
+ @s[-1].should == "13"
+ end
+
+ it "returns nil if index is outside of self" do
+ @s.scan(/(\w+) (\w+) (\d+) /)
+ @s[5].should == nil
+ @s[-5].should == nil
+ end
+
+ it "calls to_int on the given index" do
+ @s.scan(/(\w+) (\w+) (\d+) /)
+ @s[0.5].should == "Fri Jun 13 "
+ end
+
+ it "raises a TypeError if the given index is nil" do
+ @s.scan(/(\w+) (\w+) (\d+) /)
+ lambda { @s[nil]}.should raise_error(TypeError)
+ end
+
+ it "raises a TypeError when a Range is as argument" do
+ @s.scan(/(\w+) (\w+) (\d+) /)
+ lambda { @s[0..2]}.should raise_error(TypeError)
+ end
+
+ it "raises a IndexError when there's no named capture" do
+ @s.scan(/(\w+) (\w+) (\d+) /)
+ lambda { @s["wday"]}.should raise_error(IndexError)
+ lambda { @s[:wday]}.should raise_error(IndexError)
+ end
+
+ it "returns named capture" do
+ @s.scan(/(?<wday>\w+) (?<month>\w+) (?<day>\d+) /)
+ @s["wday"].should == "Fri"
+ @s["month"].should == "Jun"
+ @s["day"].should == "13"
+ @s[:wday].should == "Fri"
+ @s[:month].should == "Jun"
+ @s[:day].should == "13"
+ end
+end
+
diff --git a/spec/ruby/library/stringscanner/empty_spec.rb b/spec/ruby/library/stringscanner/empty_spec.rb
new file mode 100644
index 0000000000..ebbc2c2703
--- /dev/null
+++ b/spec/ruby/library/stringscanner/empty_spec.rb
@@ -0,0 +1,20 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require File.expand_path('../shared/eos.rb', __FILE__)
+require 'strscan'
+
+describe "StringScanner#empty?" do
+ it_behaves_like(:strscan_eos, :empty?)
+
+ it "warns in verbose mode that the method is obsolete" do
+ s = StringScanner.new("abc")
+ lambda {
+ $VERBOSE = true
+ s.empty?
+ }.should complain(/empty?.*obsolete.*eos?/)
+
+ lambda {
+ $VERBOSE = false
+ s.empty?
+ }.should_not complain
+ end
+end
diff --git a/spec/ruby/library/stringscanner/eos_spec.rb b/spec/ruby/library/stringscanner/eos_spec.rb
new file mode 100644
index 0000000000..3fdeceb25d
--- /dev/null
+++ b/spec/ruby/library/stringscanner/eos_spec.rb
@@ -0,0 +1,7 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require File.expand_path('../shared/eos.rb', __FILE__)
+require 'strscan'
+
+describe "StringScanner#eos?" do
+ it_behaves_like(:strscan_eos, :eos?)
+end
diff --git a/spec/ruby/library/stringscanner/exist_spec.rb b/spec/ruby/library/stringscanner/exist_spec.rb
new file mode 100644
index 0000000000..ff13de89df
--- /dev/null
+++ b/spec/ruby/library/stringscanner/exist_spec.rb
@@ -0,0 +1,24 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require 'strscan'
+
+describe "StringScanner#exist?" do
+ before :each do
+ @s = StringScanner.new("This is a test")
+ end
+
+ it "returns the index of the first occurrence of the given pattern" do
+ @s.exist?(/s/).should == 4
+ @s.scan(/This is/)
+ @s.exist?(/s/).should == 6
+ end
+
+ it "returns 0 if the pattern is empty" do
+ @s.exist?(//).should == 0
+ end
+
+ it "returns nil if the pattern isn't found in the string" do
+ @s.exist?(/S/).should == nil
+ @s.scan(/This is/)
+ @s.exist?(/i/).should == nil
+ end
+end
diff --git a/spec/ruby/library/stringscanner/get_byte_spec.rb b/spec/ruby/library/stringscanner/get_byte_spec.rb
new file mode 100644
index 0000000000..786b068042
--- /dev/null
+++ b/spec/ruby/library/stringscanner/get_byte_spec.rb
@@ -0,0 +1,7 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require File.expand_path('../shared/get_byte', __FILE__)
+require 'strscan'
+
+describe "StringScanner#get_byte" do
+ it_behaves_like :strscan_get_byte, :get_byte
+end
diff --git a/spec/ruby/library/stringscanner/getbyte_spec.rb b/spec/ruby/library/stringscanner/getbyte_spec.rb
new file mode 100644
index 0000000000..6d3b8c357d
--- /dev/null
+++ b/spec/ruby/library/stringscanner/getbyte_spec.rb
@@ -0,0 +1,23 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require File.expand_path('../shared/get_byte', __FILE__)
+require File.expand_path('../shared/extract_range', __FILE__)
+require 'strscan'
+
+describe "StringScanner#getbyte" do
+ it_behaves_like :strscan_get_byte, :getbyte
+
+ it "warns in verbose mode that the method is obsolete" do
+ s = StringScanner.new("abc")
+ lambda {
+ $VERBOSE = true
+ s.getbyte
+ }.should complain(/getbyte.*obsolete.*get_byte/)
+
+ lambda {
+ $VERBOSE = false
+ s.getbyte
+ }.should_not complain
+ end
+
+ it_behaves_like :extract_range, :getbyte
+end
diff --git a/spec/ruby/library/stringscanner/getch_spec.rb b/spec/ruby/library/stringscanner/getch_spec.rb
new file mode 100644
index 0000000000..ae2907d817
--- /dev/null
+++ b/spec/ruby/library/stringscanner/getch_spec.rb
@@ -0,0 +1,35 @@
+# -*- encoding: binary -*-
+require File.expand_path('../../../spec_helper', __FILE__)
+require File.expand_path('../shared/extract_range', __FILE__)
+require 'strscan'
+
+describe "StringScanner#getch" do
+ it "scans one character and returns it" do
+ s = StringScanner.new('abc')
+ s.getch.should == "a"
+ s.getch.should == "b"
+ s.getch.should == "c"
+ end
+
+ it "is multi-byte character sensitive" do
+ # Japanese hiragana "A" in EUC-JP
+ src = "\244\242".force_encoding("euc-jp")
+
+ s = StringScanner.new(src)
+ s.getch.should == src
+ end
+
+ it "returns nil at the end of the string" do
+ # empty string case
+ s = StringScanner.new('')
+ s.getch.should == nil
+ s.getch.should == nil
+
+ # non-empty string case
+ s = StringScanner.new('a')
+ s.getch # skip one
+ s.getch.should == nil
+ end
+
+ it_behaves_like :extract_range, :getch
+end
diff --git a/spec/ruby/library/stringscanner/initialize_spec.rb b/spec/ruby/library/stringscanner/initialize_spec.rb
new file mode 100644
index 0000000000..ab0ea23408
--- /dev/null
+++ b/spec/ruby/library/stringscanner/initialize_spec.rb
@@ -0,0 +1,28 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require 'strscan'
+
+describe "StringScanner#initialize" do
+ before :each do
+ @s = StringScanner.new("This is a test")
+ end
+
+ it "is a private method" do
+ StringScanner.should have_private_instance_method(:initialize)
+ end
+
+ it "returns an instance of StringScanner" do
+ @s.should be_kind_of(StringScanner)
+ @s.tainted?.should be_false
+ @s.eos?.should be_false
+ end
+
+ it "converts the argument into a string using #to_str" do
+ m = mock(:str)
+
+ s = "test"
+ m.should_receive(:to_str).and_return(s)
+
+ scan = StringScanner.new(m)
+ scan.string.should == s
+ end
+end
diff --git a/spec/ruby/library/stringscanner/inspect_spec.rb b/spec/ruby/library/stringscanner/inspect_spec.rb
new file mode 100644
index 0000000000..2f22a29a2e
--- /dev/null
+++ b/spec/ruby/library/stringscanner/inspect_spec.rb
@@ -0,0 +1,20 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require 'strscan'
+
+describe "StringScanner#inspect" do
+ before :each do
+ @s = StringScanner.new("This is a test")
+ end
+
+ it "returns a String object" do
+ @s.inspect.should be_kind_of(String)
+ end
+
+ it "returns a string that represents the StringScanner object" do
+ @s.inspect.should == "#<StringScanner 0/14 @ \"This ...\">"
+ @s.scan_until(/is/)
+ @s.inspect.should == "#<StringScanner 4/14 \"This\" @ \" is a...\">"
+ @s.terminate
+ @s.inspect.should == "#<StringScanner fin>"
+ end
+end
diff --git a/spec/ruby/library/stringscanner/match_spec.rb b/spec/ruby/library/stringscanner/match_spec.rb
new file mode 100644
index 0000000000..227be6c3a5
--- /dev/null
+++ b/spec/ruby/library/stringscanner/match_spec.rb
@@ -0,0 +1,28 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require 'strscan'
+
+describe "StringScanner#match?" do
+ before :each do
+ @s = StringScanner.new("This is a test")
+ end
+
+ it "returns the length of the match and the scan pointer is not advanced" do
+ @s.match?(/\w+/).should == 4
+ @s.match?(/\w+/).should == 4
+ @s.pos.should == 0
+ end
+
+ it "returns nil if there's no match" do
+ @s.match?(/\d+/).should == nil
+ @s.match?(/\s+/).should == nil
+ end
+
+ it "effects pre_match" do
+ @s.scan(/\w+/)
+ @s.scan(/\s/)
+
+ @s.pre_match.should == "This"
+ @s.match?(/\w+/)
+ @s.pre_match.should == "This "
+ end
+end
diff --git a/spec/ruby/library/stringscanner/matched_size_spec.rb b/spec/ruby/library/stringscanner/matched_size_spec.rb
new file mode 100644
index 0000000000..7aac71878a
--- /dev/null
+++ b/spec/ruby/library/stringscanner/matched_size_spec.rb
@@ -0,0 +1,7 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require File.expand_path('../shared/matched_size.rb', __FILE__)
+require 'strscan'
+
+describe "StringScanner#matched_size" do
+ it_behaves_like(:strscan_matched_size, :matched_size)
+end
diff --git a/spec/ruby/library/stringscanner/matched_spec.rb b/spec/ruby/library/stringscanner/matched_spec.rb
new file mode 100644
index 0000000000..1d781bd3ef
--- /dev/null
+++ b/spec/ruby/library/stringscanner/matched_spec.rb
@@ -0,0 +1,41 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require File.expand_path('../shared/extract_range_matched', __FILE__)
+require 'strscan'
+
+describe "StringScanner#matched" do
+ before :each do
+ @s = StringScanner.new("This is a test")
+ end
+
+ it "returns the last matched string" do
+ @s.match?(/\w+/)
+ @s.matched.should == "This"
+ @s.getch
+ @s.matched.should == "T"
+ @s.get_byte
+ @s.matched.should == "h"
+ end
+
+ it "returns nil if there's no match" do
+ @s.match?(/\d+/)
+ @s.matched.should == nil
+ end
+
+ it_behaves_like :extract_range_matched, :matched
+end
+
+describe "StringScanner#matched?" do
+ before :each do
+ @s = StringScanner.new("This is a test")
+ end
+
+ it "returns true if the last match was successful" do
+ @s.match?(/\w+/)
+ @s.matched?.should be_true
+ end
+
+ it "returns false if there's no match" do
+ @s.match?(/\d+/)
+ @s.matched?.should be_false
+ end
+end
diff --git a/spec/ruby/library/stringscanner/must_C_version_spec.rb b/spec/ruby/library/stringscanner/must_C_version_spec.rb
new file mode 100644
index 0000000000..c7d24ed2f8
--- /dev/null
+++ b/spec/ruby/library/stringscanner/must_C_version_spec.rb
@@ -0,0 +1,8 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require 'strscan'
+
+describe "StringScanner.must_C_version" do
+ it "returns self" do
+ StringScanner.must_C_version.should == StringScanner
+ end
+end
diff --git a/spec/ruby/library/stringscanner/peek_spec.rb b/spec/ruby/library/stringscanner/peek_spec.rb
new file mode 100644
index 0000000000..49490ec3da
--- /dev/null
+++ b/spec/ruby/library/stringscanner/peek_spec.rb
@@ -0,0 +1,8 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require File.expand_path('../shared/peek.rb', __FILE__)
+require 'strscan'
+
+describe "StringScanner#peek" do
+ it_behaves_like(:strscan_peek, :peek)
+end
+
diff --git a/spec/ruby/library/stringscanner/peep_spec.rb b/spec/ruby/library/stringscanner/peep_spec.rb
new file mode 100644
index 0000000000..677c6f8a21
--- /dev/null
+++ b/spec/ruby/library/stringscanner/peep_spec.rb
@@ -0,0 +1,20 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require File.expand_path('../shared/peek.rb', __FILE__)
+require 'strscan'
+
+describe "StringScanner#peep" do
+ it_behaves_like(:strscan_peek, :peep)
+
+ it "warns in verbose mode that the method is obsolete" do
+ s = StringScanner.new("abc")
+ lambda {
+ $VERBOSE = true
+ s.peep(1)
+ }.should complain(/peep.*obsolete.*peek/)
+
+ lambda {
+ $VERBOSE = false
+ s.peep(1)
+ }.should_not complain
+ end
+end
diff --git a/spec/ruby/library/stringscanner/pointer_spec.rb b/spec/ruby/library/stringscanner/pointer_spec.rb
new file mode 100644
index 0000000000..8c993c5a71
--- /dev/null
+++ b/spec/ruby/library/stringscanner/pointer_spec.rb
@@ -0,0 +1,11 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require File.expand_path('../shared/pos.rb', __FILE__)
+require 'strscan'
+
+describe "StringScanner#pointer" do
+ it_behaves_like(:strscan_pos, :pointer)
+end
+
+describe "StringScanner#pointer=" do
+ it_behaves_like(:strscan_pos_set, :pointer=)
+end
diff --git a/spec/ruby/library/stringscanner/pos_spec.rb b/spec/ruby/library/stringscanner/pos_spec.rb
new file mode 100644
index 0000000000..059e6ff846
--- /dev/null
+++ b/spec/ruby/library/stringscanner/pos_spec.rb
@@ -0,0 +1,11 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require File.expand_path('../shared/pos.rb', __FILE__)
+require 'strscan'
+
+describe "StringScanner#pos" do
+ it_behaves_like(:strscan_pos, :pos)
+end
+
+describe "StringScanner#pos=" do
+ it_behaves_like(:strscan_pos_set, :pos=)
+end
diff --git a/spec/ruby/library/stringscanner/post_match_spec.rb b/spec/ruby/library/stringscanner/post_match_spec.rb
new file mode 100644
index 0000000000..94064bb368
--- /dev/null
+++ b/spec/ruby/library/stringscanner/post_match_spec.rb
@@ -0,0 +1,28 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require File.expand_path('../shared/extract_range_matched', __FILE__)
+require 'strscan'
+
+describe "StringScanner#post_match" do
+ before :each do
+ @s = StringScanner.new("This is a test")
+ end
+
+ it "returns the post-match (in the regular expression sense) of the last scan" do
+ @s.post_match.should == nil
+ @s.scan(/\w+\s/)
+ @s.post_match.should == "is a test"
+ @s.getch
+ @s.post_match.should == "s a test"
+ @s.get_byte
+ @s.post_match.should == " a test"
+ @s.get_byte
+ @s.post_match.should == "a test"
+ end
+
+ it "returns nil if there's no match" do
+ @s.scan(/\s+/)
+ @s.post_match.should == nil
+ end
+
+ it_behaves_like :extract_range_matched, :post_match
+end
diff --git a/spec/ruby/library/stringscanner/pre_match_spec.rb b/spec/ruby/library/stringscanner/pre_match_spec.rb
new file mode 100644
index 0000000000..0d4759dc5c
--- /dev/null
+++ b/spec/ruby/library/stringscanner/pre_match_spec.rb
@@ -0,0 +1,41 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require File.expand_path('../shared/extract_range_matched', __FILE__)
+require 'strscan'
+
+describe "StringScanner#pre_match" do
+ before :each do
+ @s = StringScanner.new("This is a test")
+ end
+
+ it "returns the pre-match (in the regular expression sense) of the last scan" do
+ @s.pre_match.should == nil
+ @s.scan(/\w+\s/)
+ @s.pre_match.should == ""
+ @s.getch
+ @s.pre_match.should == "This "
+ @s.get_byte
+ @s.pre_match.should == "This i"
+ @s.get_byte
+ @s.pre_match.should == "This is"
+ end
+
+ it "returns nil if there's no match" do
+ @s.scan(/\s+/)
+ @s.pre_match.should == nil
+ end
+
+ it "is more than just the data from the last match" do
+ @s.scan(/\w+/)
+ @s.scan_until(/a te/)
+ @s.pre_match.should == "This is "
+ end
+
+ it "is not changed when the scanner's position changes" do
+ @s.scan_until(/\s+/)
+ @s.pre_match.should == "This"
+ @s.pos -= 1
+ @s.pre_match.should == "This"
+ end
+
+ it_behaves_like :extract_range_matched, :pre_match
+end
diff --git a/spec/ruby/library/stringscanner/reset_spec.rb b/spec/ruby/library/stringscanner/reset_spec.rb
new file mode 100644
index 0000000000..9631d0bb4a
--- /dev/null
+++ b/spec/ruby/library/stringscanner/reset_spec.rb
@@ -0,0 +1,15 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require 'strscan'
+
+describe "StringScanner#reset" do
+ before :each do
+ @s = StringScanner.new("This is a test")
+ end
+
+ it "reset the scan pointer and clear matching data" do
+ @s.scan(/This/)
+ @s.reset
+ @s.pos.should == 0
+ @s.matched.should == nil
+ end
+end
diff --git a/spec/ruby/library/stringscanner/rest_size_spec.rb b/spec/ruby/library/stringscanner/rest_size_spec.rb
new file mode 100644
index 0000000000..ad019f2a6b
--- /dev/null
+++ b/spec/ruby/library/stringscanner/rest_size_spec.rb
@@ -0,0 +1,7 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require File.expand_path('../shared/rest_size.rb', __FILE__)
+require 'strscan'
+
+describe "StringScanner#rest_size" do
+ it_behaves_like(:strscan_rest_size, :rest_size)
+end
diff --git a/spec/ruby/library/stringscanner/rest_spec.rb b/spec/ruby/library/stringscanner/rest_spec.rb
new file mode 100644
index 0000000000..87f2d056bb
--- /dev/null
+++ b/spec/ruby/library/stringscanner/rest_spec.rb
@@ -0,0 +1,48 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require File.expand_path('../shared/extract_range_matched', __FILE__)
+require 'strscan'
+
+describe "StringScanner#rest" do
+ before :each do
+ @s = StringScanner.new("This is a test")
+ end
+
+ it "returns the rest of the string" do
+ @s.scan(/This\s+/)
+ @s.rest.should == "is a test"
+ end
+
+ it "returns self in the reset position" do
+ @s.reset
+ @s.rest.should == @s.string
+ end
+
+ it "returns an empty string in the terminate position" do
+ @s.terminate
+ @s.rest.should == ""
+ end
+
+ it_behaves_like :extract_range_matched, :rest
+
+end
+
+describe "StringScanner#rest?" do
+ before :each do
+ @s = StringScanner.new("This is a test")
+ end
+
+ it "returns true if there is more data in the string" do
+ @s.rest?.should be_true
+ @s.scan(/This/)
+ @s.rest?.should be_true
+ end
+
+ it "returns false if there is no more data in the string" do
+ @s.terminate
+ @s.rest?.should be_false
+ end
+
+ it "is the opposite of eos?" do
+ @s.rest?.should_not == @s.eos?
+ end
+end
diff --git a/spec/ruby/library/stringscanner/restsize_spec.rb b/spec/ruby/library/stringscanner/restsize_spec.rb
new file mode 100644
index 0000000000..9822d69d84
--- /dev/null
+++ b/spec/ruby/library/stringscanner/restsize_spec.rb
@@ -0,0 +1,20 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require File.expand_path('../shared/rest_size.rb', __FILE__)
+require 'strscan'
+
+describe "StringScanner#restsize" do
+ it_behaves_like(:strscan_rest_size, :restsize)
+
+ it "warns in verbose mode that the method is obsolete" do
+ s = StringScanner.new("abc")
+ lambda {
+ $VERBOSE = true
+ s.restsize
+ }.should complain(/restsize.*obsolete.*rest_size/)
+
+ lambda {
+ $VERBOSE = false
+ s.restsize
+ }.should_not complain
+ end
+end
diff --git a/spec/ruby/library/stringscanner/scan_full_spec.rb b/spec/ruby/library/stringscanner/scan_full_spec.rb
new file mode 100644
index 0000000000..ada9578558
--- /dev/null
+++ b/spec/ruby/library/stringscanner/scan_full_spec.rb
@@ -0,0 +1,30 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require 'strscan'
+
+describe "StringScanner#scan_full" do
+ before :each do
+ @s = StringScanner.new("This is a test")
+ end
+
+ it "returns the number of bytes advanced" do
+ orig_pos = @s.pos
+ @s.scan_full(/This/, false, false).should == 4
+ @s.pos.should == orig_pos
+ end
+
+ it "returns the number of bytes advanced and advances the scan pointer if the second argument is true" do
+ @s.scan_full(/This/, true, false).should == 4
+ @s.pos.should == 4
+ end
+
+ it "returns the matched string if the third argument is true" do
+ orig_pos = @s.pos
+ @s.scan_full(/This/, false, true).should == "This"
+ @s.pos.should == orig_pos
+ end
+
+ it "returns the matched string if the third argument is true and advances the scan pointer if the second argument is true" do
+ @s.scan_full(/This/, true, true).should == "This"
+ @s.pos.should == 4
+ end
+end
diff --git a/spec/ruby/library/stringscanner/scan_spec.rb b/spec/ruby/library/stringscanner/scan_spec.rb
new file mode 100644
index 0000000000..84a0f27f08
--- /dev/null
+++ b/spec/ruby/library/stringscanner/scan_spec.rb
@@ -0,0 +1,43 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require 'strscan'
+
+describe "StringScanner#scan" do
+ before :each do
+ @s = StringScanner.new("This is a test")
+ end
+
+ it "returns the matched string" do
+ @s.scan(/\w+/).should == "This"
+ @s.scan(/.../).should == " is"
+ @s.scan(//).should == ""
+ @s.scan(/\s+/).should == " "
+ end
+
+ it "treats ^ as matching from the beginning of the current position" do
+ @s.scan(/\w+/).should == "This"
+ @s.scan(/^\d/).should be_nil
+ @s.scan(/^\s/).should == " "
+ end
+
+ it "returns nil if there's no match" do
+ @s.scan(/\d/).should == nil
+ end
+
+ it "returns nil when there is no more to scan" do
+ @s.scan(/[\w\s]+/).should == "This is a test"
+ @s.scan(/\w+/).should be_nil
+ end
+
+ it "returns an empty string when the pattern matches empty" do
+ @s.scan(/.*/).should == "This is a test"
+ @s.scan(/.*/).should == ""
+ @s.scan(/./).should be_nil
+ end
+
+ it "raises a TypeError if pattern isn't a Regexp" do
+ lambda { @s.scan("aoeu") }.should raise_error(TypeError)
+ lambda { @s.scan(5) }.should raise_error(TypeError)
+ lambda { @s.scan(:test) }.should raise_error(TypeError)
+ lambda { @s.scan(mock('x')) }.should raise_error(TypeError)
+ end
+end
diff --git a/spec/ruby/library/stringscanner/scan_until_spec.rb b/spec/ruby/library/stringscanner/scan_until_spec.rb
new file mode 100644
index 0000000000..702283ed22
--- /dev/null
+++ b/spec/ruby/library/stringscanner/scan_until_spec.rb
@@ -0,0 +1,23 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require 'strscan'
+
+describe "StringScanner#scan_until" do
+ before :each do
+ @s = StringScanner.new("This is a test")
+ end
+
+ it "returns the substring up to and including the end of the match" do
+ @s.scan_until(/a/).should == "This is a"
+ @s.pre_match.should == "This is "
+ @s.post_match.should == " test"
+ end
+
+ it "returns nil if there's no match" do
+ @s.scan_until(/\d/).should == nil
+ end
+
+ it "can match anchors properly" do
+ @s.scan(/T/)
+ @s.scan_until(/^h/).should == "h"
+ end
+end
diff --git a/spec/ruby/library/stringscanner/search_full_spec.rb b/spec/ruby/library/stringscanner/search_full_spec.rb
new file mode 100644
index 0000000000..43ff840003
--- /dev/null
+++ b/spec/ruby/library/stringscanner/search_full_spec.rb
@@ -0,0 +1,30 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require 'strscan'
+
+describe "StringScanner#search_full" do
+ before :each do
+ @s = StringScanner.new("This is a test")
+ end
+
+ it "returns the number of bytes advanced" do
+ orig_pos = @s.pos
+ @s.search_full(/This/, false, false).should == 4
+ @s.pos.should == orig_pos
+ end
+
+ it "returns the number of bytes advanced and advances the scan pointer if the second argument is true" do
+ @s.search_full(/This/, true, false).should == 4
+ @s.pos.should == 4
+ end
+
+ it "returns the matched string if the third argument is true" do
+ orig_pos = @s.pos
+ @s.search_full(/This/, false, true).should == "This"
+ @s.pos.should == orig_pos
+ end
+
+ it "returns the matched string if the third argument is true and advances the scan pointer if the second argument is true" do
+ @s.search_full(/This/, true, true).should == "This"
+ @s.pos.should == 4
+ end
+end
diff --git a/spec/ruby/library/stringscanner/shared/bol.rb b/spec/ruby/library/stringscanner/shared/bol.rb
new file mode 100644
index 0000000000..ebcdd7938f
--- /dev/null
+++ b/spec/ruby/library/stringscanner/shared/bol.rb
@@ -0,0 +1,25 @@
+describe :strscan_bol, shared: true do
+ it "returns true if the scan pointer is at the beginning of the line, false otherwise" do
+ s = StringScanner.new("This is a test")
+ s.send(@method).should be_true
+ s.scan(/This/)
+ s.send(@method).should be_false
+ s.terminate
+ s.send(@method).should be_false
+
+ s = StringScanner.new("hello\nworld")
+ s.bol?.should be_true
+ s.scan(/\w+/)
+ s.bol?.should be_false
+ s.scan(/\n/)
+ s.bol?.should be_true
+ s.unscan
+ s.bol?.should be_false
+ end
+
+ it "returns true if the scan pointer is at the end of the line of an empty string." do
+ s = StringScanner.new('')
+ s.terminate
+ s.send(@method).should be_true
+ end
+end
diff --git a/spec/ruby/library/stringscanner/shared/concat.rb b/spec/ruby/library/stringscanner/shared/concat.rb
new file mode 100644
index 0000000000..28788d3ff1
--- /dev/null
+++ b/spec/ruby/library/stringscanner/shared/concat.rb
@@ -0,0 +1,30 @@
+describe :strscan_concat, shared: true do
+ it "concatenates the given argument to self and returns self" do
+ s = StringScanner.new("hello ")
+ s.send(@method, 'world').should == s
+ s.string.should == "hello world"
+ s.eos?.should be_false
+ end
+
+ it "raises a TypeError if the given argument can't be converted to a String" do
+ lambda { StringScanner.new('hello').send(@method, :world) }.should raise_error(TypeError)
+ lambda { StringScanner.new('hello').send(@method, mock('x')) }.should raise_error(TypeError)
+ end
+end
+
+describe :strscan_concat_fixnum, shared: true do
+ it "raises a TypeError" do
+ a = StringScanner.new("hello world")
+ lambda { a.send(@method, 333) }.should raise_error(TypeError)
+ b = StringScanner.new("")
+ lambda { b.send(@method, (256 * 3 + 64)) }.should raise_error(TypeError)
+ lambda { b.send(@method, -200) }.should raise_error(TypeError)
+ end
+
+ it "doesn't call to_int on the argument" do
+ x = mock('x')
+ x.should_not_receive(:to_int)
+
+ lambda { "".send(@method, x) }.should raise_error(TypeError)
+ end
+end
diff --git a/spec/ruby/library/stringscanner/shared/eos.rb b/spec/ruby/library/stringscanner/shared/eos.rb
new file mode 100644
index 0000000000..ea04c764a2
--- /dev/null
+++ b/spec/ruby/library/stringscanner/shared/eos.rb
@@ -0,0 +1,17 @@
+describe :strscan_eos, shared: true do
+ before :each do
+ @s = StringScanner.new("This is a test")
+ end
+
+ it "returns true if the scan pointer is at the end of the string" do
+ @s.terminate
+ @s.send(@method).should be_true
+
+ s = StringScanner.new('')
+ s.send(@method).should be_true
+ end
+
+ it "returns false if the scan pointer is not at the end of the string" do
+ @s.send(@method).should be_false
+ end
+end
diff --git a/spec/ruby/library/stringscanner/shared/extract_range.rb b/spec/ruby/library/stringscanner/shared/extract_range.rb
new file mode 100644
index 0000000000..7e98540b1a
--- /dev/null
+++ b/spec/ruby/library/stringscanner/shared/extract_range.rb
@@ -0,0 +1,22 @@
+describe :extract_range, shared: true do
+ it "returns an instance of String when passed a String subclass" do
+ cls = Class.new(String)
+ sub = cls.new("abc")
+
+ s = StringScanner.new(sub)
+ ch = s.send(@method)
+ ch.should_not be_kind_of(cls)
+ ch.should be_an_instance_of(String)
+ end
+
+ it "taints the returned String if the input was tainted" do
+ str = 'abc'
+ str.taint
+
+ s = StringScanner.new(str)
+
+ s.send(@method).tainted?.should be_true
+ s.send(@method).tainted?.should be_true
+ s.send(@method).tainted?.should be_true
+ end
+end
diff --git a/spec/ruby/library/stringscanner/shared/extract_range_matched.rb b/spec/ruby/library/stringscanner/shared/extract_range_matched.rb
new file mode 100644
index 0000000000..fe695e8ac1
--- /dev/null
+++ b/spec/ruby/library/stringscanner/shared/extract_range_matched.rb
@@ -0,0 +1,22 @@
+describe :extract_range_matched, shared: true do
+ it "returns an instance of String when passed a String subclass" do
+ cls = Class.new(String)
+ sub = cls.new("abc")
+
+ s = StringScanner.new(sub)
+ s.scan(/\w{1}/)
+
+ ch = s.send(@method)
+ ch.should_not be_kind_of(cls)
+ ch.should be_an_instance_of(String)
+ end
+
+ it "taints the returned String if the input was tainted" do
+ str = 'abc'
+ str.taint
+
+ s = StringScanner.new(str)
+ s.scan(/\w{1}/)
+ s.send(@method).tainted?.should be_true
+ end
+end
diff --git a/spec/ruby/library/stringscanner/shared/get_byte.rb b/spec/ruby/library/stringscanner/shared/get_byte.rb
new file mode 100644
index 0000000000..763ab6f4a4
--- /dev/null
+++ b/spec/ruby/library/stringscanner/shared/get_byte.rb
@@ -0,0 +1,29 @@
+# -*- encoding: binary -*-
+describe :strscan_get_byte, shared: true do
+ it "scans one byte and returns it" do
+ s = StringScanner.new('abc5.')
+ s.send(@method).should == 'a'
+ s.send(@method).should == 'b'
+ s.send(@method).should == 'c'
+ s.send(@method).should == '5'
+ s.send(@method).should == '.'
+ end
+
+ it "is not multi-byte character sensitive" do
+ s = StringScanner.new("\244\242")
+ s.send(@method).should == "\244"
+ s.send(@method).should == "\242"
+ end
+
+ it "returns nil at the end of the string" do
+ # empty string case
+ s = StringScanner.new('')
+ s.send(@method).should == nil
+ s.send(@method).should == nil
+
+ # non-empty string case
+ s = StringScanner.new('a')
+ s.send(@method) # skip one
+ s.send(@method).should == nil
+ end
+end
diff --git a/spec/ruby/library/stringscanner/shared/matched_size.rb b/spec/ruby/library/stringscanner/shared/matched_size.rb
new file mode 100644
index 0000000000..92174733f7
--- /dev/null
+++ b/spec/ruby/library/stringscanner/shared/matched_size.rb
@@ -0,0 +1,21 @@
+describe :strscan_matched_size, shared: true do
+ before :each do
+ @s = StringScanner.new("This is a test")
+ end
+
+ it "returns the size of the most recent match" do
+ @s.check(/This/)
+ @s.send(@method).should == 4
+ @s.send(@method).should == 4
+ @s.scan(//)
+ @s.send(@method).should == 0
+ end
+
+ it "returns nil if there was no recent match" do
+ @s.send(@method).should == nil
+ @s.check(/\d+/)
+ @s.send(@method).should == nil
+ @s.terminate
+ @s.send(@method).should == nil
+ end
+end
diff --git a/spec/ruby/library/stringscanner/shared/peek.rb b/spec/ruby/library/stringscanner/shared/peek.rb
new file mode 100644
index 0000000000..418ebb6536
--- /dev/null
+++ b/spec/ruby/library/stringscanner/shared/peek.rb
@@ -0,0 +1,47 @@
+describe :strscan_peek, shared: true do
+ before :each do
+ @s = StringScanner.new('This is a test')
+ end
+
+ it "returns at most the specified number of bytes from the current position" do
+ @s.send(@method, 4).should == "This"
+ @s.pos.should == 0
+ @s.pos = 5
+ @s.send(@method, 2).should == "is"
+ @s.send(@method, 1000).should == "is a test"
+
+ s = StringScanner.new("été")
+ s.send(@method, 2).should == "é"
+ end
+
+ it "returns an empty string when the passed argument is zero" do
+ @s.send(@method, 0).should == ""
+ end
+
+ it "raises a ArgumentError when the passed argument is negative" do
+ lambda { @s.send(@method, -2) }.should raise_error(ArgumentError)
+ end
+
+ it "raises a RangeError when the passed argument is a Bignum" do
+ lambda { @s.send(@method, bignum_value) }.should raise_error(RangeError)
+ end
+
+ it "returns an instance of String when passed a String subclass" do
+ cls = Class.new(String)
+ sub = cls.new("abc")
+
+ s = StringScanner.new(sub)
+
+ ch = s.send(@method, 1)
+ ch.should_not be_kind_of(cls)
+ ch.should be_an_instance_of(String)
+ end
+
+ it "taints the returned String if the input was tainted" do
+ str = 'abc'
+ str.taint
+
+ s = StringScanner.new(str)
+ s.send(@method, 1).tainted?.should be_true
+ end
+end
diff --git a/spec/ruby/library/stringscanner/shared/pos.rb b/spec/ruby/library/stringscanner/shared/pos.rb
new file mode 100644
index 0000000000..80ded17b0f
--- /dev/null
+++ b/spec/ruby/library/stringscanner/shared/pos.rb
@@ -0,0 +1,52 @@
+describe :strscan_pos, shared: true do
+ before :each do
+ @s = StringScanner.new("This is a test")
+ end
+
+ it "returns the position of the scan pointer" do
+ @s.send(@method).should == 0
+ @s.scan_until(/This is/)
+ @s.send(@method).should == 7
+ @s.get_byte
+ @s.send(@method).should == 8
+ @s.terminate
+ @s.send(@method).should == 14
+ end
+
+ it "returns 0 in the reset position" do
+ @s.reset
+ @s.send(@method).should == 0
+ end
+
+ it "returns the length of the string in the terminate position" do
+ @s.terminate
+ @s.send(@method).should == @s.string.length
+ end
+end
+
+describe :strscan_pos_set, shared: true do
+ before :each do
+ @s = StringScanner.new("This is a test")
+ end
+
+ it "modify the scan pointer" do
+ @s.send(@method, 5)
+ @s.rest.should == "is a test"
+ end
+
+ it "positions from the end if the argument is negative" do
+ @s.send(@method, -2)
+ @s.rest.should == "st"
+ @s.pos.should == 12
+ end
+
+ it "raises a RangeError if position too far backward" do
+ lambda {
+ @s.send(@method, -20)
+ }.should raise_error(RangeError)
+ end
+
+ it "raises a RangeError when the passed argument is out of range" do
+ lambda { @s.send(@method, 20) }.should raise_error(RangeError)
+ end
+end
diff --git a/spec/ruby/library/stringscanner/shared/rest_size.rb b/spec/ruby/library/stringscanner/shared/rest_size.rb
new file mode 100644
index 0000000000..4c4f49e45c
--- /dev/null
+++ b/spec/ruby/library/stringscanner/shared/rest_size.rb
@@ -0,0 +1,18 @@
+describe :strscan_rest_size, shared: true do
+ before :each do
+ @s = StringScanner.new('This is a test')
+ end
+
+ it "returns the length of the rest of the string" do
+ @s.send(@method).should == 14
+ @s.scan(/This/)
+ @s.send(@method).should == 10
+ @s.terminate
+ @s.send(@method).should == 0
+ end
+
+ it "is equivalent to rest.size" do
+ @s.scan(/This/)
+ @s.send(@method).should == @s.rest.size
+ end
+end
diff --git a/spec/ruby/library/stringscanner/shared/terminate.rb b/spec/ruby/library/stringscanner/shared/terminate.rb
new file mode 100644
index 0000000000..bf41d097e2
--- /dev/null
+++ b/spec/ruby/library/stringscanner/shared/terminate.rb
@@ -0,0 +1,8 @@
+describe :strscan_terminate, shared: true do
+ it "set the scan pointer to the end of the string and clear matching data." do
+ s = StringScanner.new('This is a test')
+ s.send(@method)
+ s.bol?.should be_false
+ s.eos?.should be_true
+ end
+end
diff --git a/spec/ruby/library/stringscanner/skip_spec.rb b/spec/ruby/library/stringscanner/skip_spec.rb
new file mode 100644
index 0000000000..7426267b6e
--- /dev/null
+++ b/spec/ruby/library/stringscanner/skip_spec.rb
@@ -0,0 +1,18 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require 'strscan'
+
+describe "StringScanner#skip" do
+ before :each do
+ @s = StringScanner.new("This is a test")
+ end
+
+ it "returns length of the match" do
+ @s.skip(/\w+/).should == 4
+ @s.skip(/\s+\w+/).should == 3
+ end
+
+ it "returns nil if there's no match" do
+ @s.skip(/\s+/).should == nil
+ @s.skip(/\d+/).should == nil
+ end
+end
diff --git a/spec/ruby/library/stringscanner/skip_until_spec.rb b/spec/ruby/library/stringscanner/skip_until_spec.rb
new file mode 100644
index 0000000000..c6e17900d1
--- /dev/null
+++ b/spec/ruby/library/stringscanner/skip_until_spec.rb
@@ -0,0 +1,18 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require 'strscan'
+
+describe "StringScanner#skip_until" do
+ before :each do
+ @s = StringScanner.new("This is a test")
+ end
+
+ it "returns the number of bytes advanced and advances the scan pointer until pattern is matched and consumed" do
+ @s.skip_until(/a/).should == 9
+ @s.pos.should == 9
+ @s.matched.should == "a"
+ end
+
+ it "returns nil if no match was found" do
+ @s.skip_until(/d+/).should == nil
+ end
+end
diff --git a/spec/ruby/library/stringscanner/string_spec.rb b/spec/ruby/library/stringscanner/string_spec.rb
new file mode 100644
index 0000000000..080c0dfcf1
--- /dev/null
+++ b/spec/ruby/library/stringscanner/string_spec.rb
@@ -0,0 +1,40 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require 'strscan'
+
+describe "StringScanner#string" do
+ before :each do
+ @string = "This is a test"
+ @s = StringScanner.new(@string)
+ end
+
+ it "returns the string being scanned" do
+ @s.string.should == "This is a test"
+ @s << " case"
+ @s.string.should == "This is a test case"
+ end
+
+ it "returns the identical object passed in" do
+ @s.string.equal?(@string).should be_true
+ end
+end
+
+describe "StringScanner#string=" do
+ before :each do
+ @s = StringScanner.new("This is a test")
+ end
+
+ it "changes the string being scanned to the argument and resets the scanner" do
+ @s.string = "Hello world"
+ @s.string.should == "Hello world"
+ end
+
+ it "converts the argument into a string using #to_str" do
+ m = mock(:str)
+
+ s = "test"
+ m.should_receive(:to_str).and_return(s)
+
+ @s.string = m
+ @s.string.should == s
+ end
+end
diff --git a/spec/ruby/library/stringscanner/terminate_spec.rb b/spec/ruby/library/stringscanner/terminate_spec.rb
new file mode 100644
index 0000000000..01cea3dbdf
--- /dev/null
+++ b/spec/ruby/library/stringscanner/terminate_spec.rb
@@ -0,0 +1,7 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require File.expand_path('../shared/terminate.rb', __FILE__)
+require 'strscan'
+
+describe "StringScanner#terminate" do
+ it_behaves_like(:strscan_terminate, :terminate)
+end
diff --git a/spec/ruby/library/stringscanner/unscan_spec.rb b/spec/ruby/library/stringscanner/unscan_spec.rb
new file mode 100644
index 0000000000..7663f20d61
--- /dev/null
+++ b/spec/ruby/library/stringscanner/unscan_spec.rb
@@ -0,0 +1,28 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require 'strscan'
+
+describe "StringScanner#unscan" do
+ before :each do
+ @s = StringScanner.new("This is a test")
+ end
+
+ it "set the scan pointer to the previous position" do
+ @s.scan(/This/)
+ @s.unscan
+ @s.matched.should == nil
+ @s.pos.should == 0
+ end
+
+ it "remember only one previous position" do
+ @s.scan(/This/)
+ pos = @s.pos
+ @s.scan(/ is/)
+ @s.unscan
+ @s.pos.should == pos
+ end
+
+ it "raises a ScanError when the previous match had failed" do
+ lambda { @s.unscan }.should raise_error(ScanError)
+ lambda { @s.scan(/\d/); @s.unscan }.should raise_error(ScanError)
+ end
+end