mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
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
This commit is contained in:
parent
75bfc6440d
commit
1d15d5f080
4370 changed files with 0 additions and 0 deletions
54
spec/ruby/library/uri/shared/join.rb
Normal file
54
spec/ruby/library/uri/shared/join.rb
Normal file
|
@ -0,0 +1,54 @@
|
|||
describe :uri_join, shared: true do
|
||||
it "returns a URI object of the concatenation of a protocol and domain, and a path" do
|
||||
@object.join("http://localhost/","main.rbx").should == URI.parse("http://localhost/main.rbx")
|
||||
end
|
||||
|
||||
it "accepts URI objects" do
|
||||
@object.join(URI("http://localhost/"),"main.rbx").should == URI.parse("http://localhost/main.rbx")
|
||||
@object.join("http://localhost/",URI("main.rbx")).should == URI.parse("http://localhost/main.rbx")
|
||||
@object.join(URI("http://localhost/"),URI("main.rbx")).should == URI.parse("http://localhost/main.rbx")
|
||||
end
|
||||
|
||||
it "accepts string-like arguments with to_str" do
|
||||
str = mock('string-like')
|
||||
str.should_receive(:to_str).and_return("http://ruby-lang.org")
|
||||
str2 = mock('string-like also')
|
||||
str2.should_receive(:to_str).and_return("foo/bar")
|
||||
@object.join(str, str2).should == URI.parse("http://ruby-lang.org/foo/bar")
|
||||
end
|
||||
|
||||
it "raises an error if given no argument" do
|
||||
lambda{ @object.join }.should raise_error
|
||||
end
|
||||
|
||||
it "doesn't create redundant '/'s" do
|
||||
@object.join("http://localhost/", "/main.rbx").should == URI.parse("http://localhost/main.rbx")
|
||||
end
|
||||
|
||||
it "discards arguments given before an absolute uri" do
|
||||
@object.join("http://localhost/a/b/c/d", "http://ruby-lang.com/foo", "bar").should == URI.parse("http://ruby-lang.com/bar")
|
||||
end
|
||||
|
||||
it "resolves .. in paths" do
|
||||
@object.join("http://localhost/a/b/c/d", "../../e/f", "g/h/../i").to_s.should == "http://localhost/a/e/g/i"
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
# assert_equal(URI.parse('http://foo/bar'), URI.join('http://foo/bar'))
|
||||
# assert_equal(URI.parse('http://foo/bar'), URI.join('http://foo', 'bar'))
|
||||
# assert_equal(URI.parse('http://foo/bar/'), URI.join('http://foo', 'bar/'))
|
||||
#
|
||||
# assert_equal(URI.parse('http://foo/baz'), URI.join('http://foo', 'bar', 'baz'))
|
||||
# assert_equal(URI.parse('http://foo/baz'), URI.join('http://foo', 'bar', '/baz'))
|
||||
# assert_equal(URI.parse('http://foo/baz/'), URI.join('http://foo', 'bar', '/baz/'))
|
||||
# assert_equal(URI.parse('http://foo/bar/baz'), URI.join('http://foo', 'bar/', 'baz'))
|
||||
# assert_equal(URI.parse('http://foo/hoge'), URI.join('http://foo', 'bar', 'baz', 'hoge'))
|
||||
#
|
||||
# assert_equal(URI.parse('http://foo/bar/baz'), URI.join('http://foo', 'bar/baz'))
|
||||
# assert_equal(URI.parse('http://foo/bar/hoge'), URI.join('http://foo', 'bar/baz', 'hoge'))
|
||||
# assert_equal(URI.parse('http://foo/bar/baz/hoge'), URI.join('http://foo', 'bar/baz/', 'hoge'))
|
||||
# assert_equal(URI.parse('http://foo/hoge'), URI.join('http://foo', 'bar/baz', '/hoge'))
|
||||
# assert_equal(URI.parse('http://foo/bar/hoge'), URI.join('http://foo', 'bar/baz', 'hoge'))
|
||||
# assert_equal(URI.parse('http://foo/bar/baz/hoge'), URI.join('http://foo', 'bar/baz/', 'hoge'))
|
||||
# assert_equal(URI.parse('http://foo/hoge'), URI.join('http://foo', 'bar/baz', '/hoge'))
|
Loading…
Add table
Add a link
Reference in a new issue