Move class to lib, add sugar, add tests

This commit is contained in:
Alex Sherman 2021-05-20 17:06:34 +05:00
parent 74e3d5461b
commit 45dfa57529
10 changed files with 71 additions and 36 deletions

View file

@ -1,36 +0,0 @@
class XsdUtil
SCHEMA_PATH = 'lib/schemas/'.freeze
def initialise(schema_path = SCHEMA_PATH)
@schema_path = schema_path
end
def xsd_schemas
@xsd_schemas ||= Dir.entries(SCHEMA_PATH)
.select { |f| File.file? File.join(SCHEMA_PATH, f) }
end
def basename(filename)
File.basename(filename, '.xsd')
end
def prefix(filename)
regex = /([a-zA-Z]+-?[a-zA-Z]+)/
basename(filename).match(regex)[0]
end
def prefixes
xsd_schemas.map { |filename| prefix(filename) }.uniq
end
def schemas_by_name
prefixes.each_with_object({}) do |prefix, hash|
hash[prefix] = xsd_schemas.select { |filename| filename.include? prefix }.uniq.sort
end
end
def latest(prefix)
schemas_by_name[prefix].last
end
end

View file

@ -0,0 +1,2 @@
require 'application_service'
require 'xsd/util'

View file

@ -0,0 +1,5 @@
class ApplicationService
def self.call(*args, &block)
new(*args, &block).call
end
end

48
lib/xsd/util.rb Normal file
View file

@ -0,0 +1,48 @@
module Xsd
class Util < ApplicationService
SCHEMA_PATH = 'lib/schemas/'.freeze
attr_reader :xsd_schemas, :for_prefix
def initialize(params)
schema_path = params.fetch(:schema_path, SCHEMA_PATH)
@for_prefix = params.fetch(:for_prefix)
@xsd_schemas = Dir.entries(schema_path).select { |f| File.file? File.join(schema_path, f) }
end
def call
latest(for_prefix)
end
private
def latest(prefix)
schemas_by_name[prefix].last
end
def basename(filename)
File.basename(filename, '.xsd')
end
def prefix(filename)
regex = /([a-zA-Z]+-?[a-zA-Z]+)/
basename(filename).match(regex)[0]
end
def prefixes
xsd_schemas.map { |filename| prefix(filename) }.uniq
end
def schemas_by_name
prefixes.each_with_object({}) do |prefix, hash|
hash[prefix] = xsd_schemas.select { |filename| prefix_check(prefix, filename) }.uniq.sort
end
end
def prefix_check(prefix, filename)
version_regex = /\-\d+\S\d+/
(filename.include? prefix) && (filename.sub(prefix, '')[0, 4] =~ version_regex)
end
end
end

View file

View file

View file

View file

View file

View file

@ -0,0 +1,16 @@
require 'test_helper'
require 'xsd/util'
class XsdUtilTest < ActiveSupport::TestCase
def test_single_part_name
version = Xsd::Util.call(schema_path: 'test/fixtures/files/schemas', for_prefix: 'abcde')
assert_equal 'abcde-1.2.xsd', version
end
def test_double_part_name
version = Xsd::Util.call(schema_path: 'test/fixtures/files/schemas', for_prefix: 'abcde-fghij')
assert_equal 'abcde-fghij-1.3.xsd', version
end
end