class Soryo::TestCommand

Public Class Methods

add_command(program) click to toggle source
# File lib/commands/testcommand.rb, line 28
def self.add_command(program)
    program.command(:test) do |c|
        c.syntax "test <template> <json> [options]"
        c.description "Build an email using a template"

        c.option "test_type", "--test_type", "choose the type of testing you want"

        c.action do |args, options|
            if args.length != 2
                abort('Please enter both a template and email')
            end
            command = Soryo::TestCommand.new(args[0], args[1], options)
            command.build
        end

        self.add_options(c)
    end
end
new(template, email, options) click to toggle source
Calls superclass method Soryo::Command::new
# File lib/commands/testcommand.rb, line 5
def initialize(template, email, options)
    super(options)
    @template = Soryo::FileInstance.new template
    @email = Soryo::FileInstance.new email
end

Public Instance Methods

build() click to toggle source
# File lib/commands/testcommand.rb, line 11
def build
    template_builder = Soryo::Template.new(@template.to_s, @email.to_hash)
    final_email = template_builder.compile
    # Run the plugins
    test final_email
end
test(email) click to toggle source
# File lib/commands/testcommand.rb, line 19
def test(email)
    Soryo::Tester.descendants.each do |c|
        if c.tester_name == @config["test_type"]
            tester = c.new
            tester.run(email, @config)
        end
    end
end