summaryrefslogtreecommitdiffstats
path: root/spec/unit/util/constant_inflector_spec.rb
blob: 20283cb59294d8dc05ac7617595bf17be2186834 (plain)
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
62
63
64
65
66
67
68
69
70
#!/usr/bin/env ruby
#
#  Created by Luke Kanies on 2008-02-12.
#  Copyright (c) 2007. All rights reserved.

require 'spec_helper'

require 'puppet/util/constant_inflector'

describe Puppet::Util::ConstantInflector, "when converting file names to constants" do
  before do
    @inflector = Object.new
    @inflector.extend(Puppet::Util::ConstantInflector)
  end

  it "should capitalize terms" do
    @inflector.file2constant("file").should == "File"
  end

  it "should switch all '/' characters to double colons" do
    @inflector.file2constant("file/other").should == "File::Other"
  end

  it "should remove underscores and capitalize the proceeding letter" do
    @inflector.file2constant("file_other").should == "FileOther"
  end

  it "should correctly replace as many underscores as exist in the file name" do
    @inflector.file2constant("two_under_scores/with_some_more_underscores").should == "TwoUnderScores::WithSomeMoreUnderscores"
  end

  it "should collapse multiple underscores" do
    @inflector.file2constant("many___scores").should == "ManyScores"
  end

  it "should correctly handle file names deeper than two directories" do
    @inflector.file2constant("one_two/three_four/five_six").should == "OneTwo::ThreeFour::FiveSix"
  end
end

describe Puppet::Util::ConstantInflector, "when converting constnats to file names" do
  before do
    @inflector = Object.new
    @inflector.extend(Puppet::Util::ConstantInflector)
  end

  it "should convert them to a string if necessary" do
    @inflector.constant2file(Puppet::Util::ConstantInflector).should be_instance_of(String)
  end

  it "should accept string inputs" do
    @inflector.constant2file("Puppet::Util::ConstantInflector").should be_instance_of(String)
  end

  it "should downcase all terms" do
    @inflector.constant2file("Puppet").should == "puppet"
  end

  it "should convert '::' to '/'" do
    @inflector.constant2file("Puppet::Util::Constant").should == "puppet/util/constant"
  end

  it "should convert mid-word capitalization to an underscore" do
    @inflector.constant2file("OneTwo::ThreeFour").should == "one_two/three_four"
  end

  it "should correctly handle constants with more than two parts" do
    @inflector.constant2file("OneTwoThree::FourFiveSixSeven").should == "one_two_three/four_five_six_seven"
  end
end