File: join_spec.rb

package info (click to toggle)
jruby 1.7.26-1%2Bdeb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 84,572 kB
  • sloc: ruby: 669,910; java: 253,056; xml: 35,152; ansic: 9,187; yacc: 7,267; cpp: 5,244; sh: 1,036; makefile: 345; jsp: 48; tcl: 40
file content (61 lines) | stat: -rw-r--r-- 2,935 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
require File.expand_path('../../../spec_helper', __FILE__)
require 'uri'

describe "URI.join" do
  it "returns a URI object of the concatenation of a protocol and domain, and a path" do
    URI.join("http://localhost/","main.rbx").should == URI.parse("http://localhost/main.rbx")
  end

  ruby_bug "redmine:3505", "1.9.2" do
    it "accepts URI objects" do
      URI.join(URI("http://localhost/"),"main.rbx").should == URI.parse("http://localhost/main.rbx")
      URI.join("http://localhost/",URI("main.rbx")).should == URI.parse("http://localhost/main.rbx")
      URI.join(URI("http://localhost/"),URI("main.rbx")).should == URI.parse("http://localhost/main.rbx")
    end
  end

  ruby_bug "redmine:3506", "1.9.2" do
    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")
      URI.join(str, str2).should == URI.parse("http://ruby-lang.org/foo/bar")
    end
  end

  it "raises an error if given no argument" do
    lambda{ URI.join }.should raise_error
  end

  it "doesn't create redundant '/'s" do
    URI.join("http://localhost/", "/main.rbx").should == URI.parse("http://localhost/main.rbx")
  end

  it "discards arguments given before an absolute uri" do
    URI.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
    URI.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'))