2023-02-27 20:30:55 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require "utils"
|
|
|
|
|
2024-02-18 15:11:11 -08:00
|
|
|
RSpec.describe Utils do
|
2023-02-27 20:30:55 -08:00
|
|
|
describe ".deconstantize" do
|
|
|
|
it "removes the rightmost segment from the constant expression in the string" do
|
|
|
|
expect(described_class.deconstantize("Net::HTTP")).to eq("Net")
|
|
|
|
expect(described_class.deconstantize("::Net::HTTP")).to eq("::Net")
|
|
|
|
expect(described_class.deconstantize("String")).to eq("")
|
|
|
|
expect(described_class.deconstantize("::String")).to eq("")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns an empty string if the namespace is empty" do
|
|
|
|
expect(described_class.deconstantize("")).to eq("")
|
|
|
|
expect(described_class.deconstantize("::")).to eq("")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe ".demodulize" do
|
|
|
|
it "removes the module part from the expression in the string" do
|
|
|
|
expect(described_class.demodulize("Foo::Bar")).to eq("Bar")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns the string if it does not contain a module expression" do
|
|
|
|
expect(described_class.demodulize("FooBar")).to eq("FooBar")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns an empty string if the namespace is empty" do
|
|
|
|
expect(described_class.demodulize("")).to eq("")
|
|
|
|
expect(described_class.demodulize("::")).to eq("")
|
|
|
|
end
|
2025-02-23 11:08:00 -08:00
|
|
|
|
|
|
|
it "raise an ArgumentError when passed nil" do
|
|
|
|
expect { described_class.demodulize(nil) }.to raise_error(ArgumentError)
|
|
|
|
end
|
2023-02-27 20:30:55 -08:00
|
|
|
end
|
|
|
|
|
2023-03-14 10:23:29 -07:00
|
|
|
specify ".parse_author!" do
|
|
|
|
parse_error_msg = /Unable to parse name and email/
|
|
|
|
|
|
|
|
expect(described_class.parse_author!("John Doe <john.doe@example.com>"))
|
|
|
|
.to eq({ name: "John Doe", email: "john.doe@example.com" })
|
|
|
|
expect { described_class.parse_author!("") }
|
|
|
|
.to raise_error(parse_error_msg)
|
|
|
|
expect { described_class.parse_author!("John Doe") }
|
|
|
|
.to raise_error(parse_error_msg)
|
|
|
|
expect { described_class.parse_author!("<john.doe@example.com>") }
|
|
|
|
.to raise_error(parse_error_msg)
|
|
|
|
end
|
|
|
|
|
2023-02-27 20:30:55 -08:00
|
|
|
describe ".pluralize" do
|
|
|
|
it "combines the stem with the default suffix based on the count" do
|
|
|
|
expect(described_class.pluralize("foo", 0)).to eq("foos")
|
|
|
|
expect(described_class.pluralize("foo", 1)).to eq("foo")
|
|
|
|
expect(described_class.pluralize("foo", 2)).to eq("foos")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "combines the stem with the singular suffix based on the count" do
|
|
|
|
expect(described_class.pluralize("foo", 0, singular: "o")).to eq("foos")
|
|
|
|
expect(described_class.pluralize("foo", 1, singular: "o")).to eq("fooo")
|
|
|
|
expect(described_class.pluralize("foo", 2, singular: "o")).to eq("foos")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "combines the stem with the plural suffix based on the count" do
|
|
|
|
expect(described_class.pluralize("foo", 0, plural: "es")).to eq("fooes")
|
|
|
|
expect(described_class.pluralize("foo", 1, plural: "es")).to eq("foo")
|
|
|
|
expect(described_class.pluralize("foo", 2, plural: "es")).to eq("fooes")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "combines the stem with the singular and plural suffix based on the count" do
|
|
|
|
expect(described_class.pluralize("foo", 0, singular: "o", plural: "es")).to eq("fooes")
|
|
|
|
expect(described_class.pluralize("foo", 1, singular: "o", plural: "es")).to eq("fooo")
|
|
|
|
expect(described_class.pluralize("foo", 2, singular: "o", plural: "es")).to eq("fooes")
|
|
|
|
end
|
2023-03-19 23:10:47 -04:00
|
|
|
|
|
|
|
it "includes the count when requested" do
|
2023-03-20 07:23:17 -04:00
|
|
|
expect(described_class.pluralize("foo", 0, include_count: true)).to eq("0 foos")
|
|
|
|
expect(described_class.pluralize("foo", 1, include_count: true)).to eq("1 foo")
|
|
|
|
expect(described_class.pluralize("foo", 2, include_count: true)).to eq("2 foos")
|
2023-03-19 23:10:47 -04:00
|
|
|
end
|
2023-02-27 20:30:55 -08:00
|
|
|
end
|
2023-03-07 10:11:59 -08:00
|
|
|
|
|
|
|
describe ".underscore" do
|
|
|
|
# commented out entries require acronyms inflections
|
2023-03-08 23:14:46 +00:00
|
|
|
let(:words) do
|
2023-03-07 10:14:57 -08:00
|
|
|
[
|
|
|
|
["API", "api"],
|
|
|
|
["APIController", "api_controller"],
|
|
|
|
["Nokogiri::HTML", "nokogiri/html"],
|
|
|
|
# ["HTTPAPI", "http_api"],
|
|
|
|
["HTTP::Get", "http/get"],
|
|
|
|
["SSLError", "ssl_error"],
|
|
|
|
# ["RESTful", "restful"],
|
|
|
|
# ["RESTfulController", "restful_controller"],
|
|
|
|
# ["Nested::RESTful", "nested/restful"],
|
|
|
|
# ["IHeartW3C", "i_heart_w3c"],
|
|
|
|
# ["PhDRequired", "phd_required"],
|
|
|
|
# ["IRoRU", "i_ror_u"],
|
|
|
|
# ["RESTfulHTTPAPI", "restful_http_api"],
|
|
|
|
# ["HTTP::RESTful", "http/restful"],
|
|
|
|
# ["HTTP::RESTfulAPI", "http/restful_api"],
|
|
|
|
# ["APIRESTful", "api_restful"],
|
|
|
|
["Capistrano", "capistrano"],
|
|
|
|
["CapiController", "capi_controller"],
|
|
|
|
["HttpsApis", "https_apis"],
|
|
|
|
["Html5", "html5"],
|
|
|
|
["Restfully", "restfully"],
|
|
|
|
["RoRails", "ro_rails"],
|
|
|
|
]
|
2023-03-08 23:14:46 +00:00
|
|
|
end
|
2023-03-07 10:11:59 -08:00
|
|
|
|
|
|
|
it "converts strings to underscore case" do
|
|
|
|
words.each do |camel, under|
|
|
|
|
expect(described_class.underscore(camel)).to eq(under)
|
|
|
|
expect(described_class.underscore(under)).to eq(under)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2023-02-27 20:30:55 -08:00
|
|
|
end
|