test program new SpecParser API

master
Philippe Pittoli 2021-03-02 10:34:40 +01:00
parent afaf5c2fda
commit e0d3c6bf7e
1 changed files with 6 additions and 6 deletions

12
test.cr
View File

@ -11,7 +11,7 @@ context.packaging_backend = "apk"
recipes = [] of Package::Recipe
class SpecFileParser
class SpecParser
def get_string?(id) : String?
entry = self.assignments[id]?
@ -49,9 +49,9 @@ class SpecFileParser
entry = assignments[id]?
case entry
when SpecFileParser::ArrayContainer
when SpecParser::ArrayContainer
entry.value
when SpecFileParser::StringContainer
when SpecParser::StringContainer
entry.value.split(",")
when Nil
return nil
@ -62,7 +62,7 @@ class SpecFileParser
end
class Package::Recipe
def initialize(@context, specs : SpecFileParser)
def initialize(@context, specs : SpecParser)
pp! specs
@name = specs.get_string "name"
@ -120,10 +120,10 @@ end
class Package::Context
def read_recipe(filename : String)
specs = SpecFileParser.parse filename
specs = SpecParser.parse filename
if specs.nil?
raise Exception.new "file could not be parsed"
raise ::Exception.new "file could not be parsed"
end
Recipe.new self, specs