Class: Awspec::Generator::Template

Inherits:
Object
  • Object
show all
Defined in:
lib/awspec/generator/template.rb

Class Method Summary collapse

Class Method Details

.file_check_and_puts(path, content) ⇒ Object



134
135
136
137
138
139
140
141
142
143
# File 'lib/awspec/generator/template.rb', line 134

def self.file_check_and_puts(path, content)
  if File.exist? @root_path + path
    $stderr.puts "!! #{path} already exists"
  else
    File.open(@root_path + path, 'w') do |f|
      f.puts content
    end
    puts " + #{path}"
  end
end

.generate(type) ⇒ Object



3
4
5
6
7
8
9
10
11
12
13
# File 'lib/awspec/generator/template.rb', line 3

def self.generate(type)
  @type = type
  @account_attribute = false
  @root_path = File.dirname(__FILE__) + '/../../../'
  generate_stub
  generate_type
  generate_type_spec
  generate_generator_doc
  generate_resource_type_doc
  put_message
end

.generate_account_attribute(type) ⇒ Object



15
16
17
18
19
20
21
22
23
# File 'lib/awspec/generator/template.rb', line 15

def self.(type)
  @type = type
  @account_attribute = true
  @root_path = File.dirname(__FILE__) + '/../../../'
  generate_type
  
  generate_resource_type_doc
  put_message
end

.generate_account_attribute_generator_docObject



91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# File 'lib/awspec/generator/template.rb', line 91

def self.
  path = 'lib/awspec/generator/doc/type/' + @type.underscore + '.rb'
  content = <<-"EOF"
module Awspec::Generator
  module Doc
module Type
  class #{@type.camelize} < AccountAttributeBase
    def initialize
      super
      @type_name = '#{@type.camelize}'
      @type = Awspec::Type::#{@type.camelize}.new
      @ret = @type.resource_via_client
      @matchers = []
      @ignore_matchers = []
      @describes = []
    end
  end
end
  end
end
EOF
  self.file_check_and_puts(path, content)
end

.generate_generator_docObject



67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# File 'lib/awspec/generator/template.rb', line 67

def self.generate_generator_doc
  path = 'lib/awspec/generator/doc/type/' + @type.underscore + '.rb'
  content = <<-"EOF"
module Awspec::Generator
  module Doc
module Type
  class #{@type.camelize} < Base
    def initialize
      super
      @type_name = '#{@type.camelize}'
      @type = Awspec::Type::#{@type.camelize}.new('my-#{@type.underscore.tr('_', '-')}')
      @ret = @type.resource_via_client
      @matchers = []
      @ignore_matchers = []
      @describes = []
    end
  end
end
  end
end
EOF
  self.file_check_and_puts(path, content)
end

.generate_resource_type_docObject



115
116
117
118
119
120
121
# File 'lib/awspec/generator/template.rb', line 115

def self.generate_resource_type_doc
  path = 'doc/_resource_types/' + @type.underscore + '.md'
  content = <<-"EOF"
### exist
EOF
  self.file_check_and_puts(path, content)
end

.generate_stubObject



44
45
46
47
48
49
50
51
52
# File 'lib/awspec/generator/template.rb', line 44

def self.generate_stub
  path = 'lib/awspec/stub/' + @type.underscore + '.rb'
  content = <<-"EOF"
# Aws.config[:ec2] = {
#   stub_responses: true
# }
EOF
  self.file_check_and_puts(path, content)
end

.generate_typeObject



25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# File 'lib/awspec/generator/template.rb', line 25

def self.generate_type
  path = 'lib/awspec/type/' + @type.underscore + '.rb'
  base = @account_attribute ? 'AccountAttributeBase' : 'ResourceBase'
  content = <<-"EOF"
module Awspec::Type
  class #{@type.camelize} < #{base}
def resource_via_client
  @resource_via_client ||= # FIXME
end

def id
 @id ||= # FIXME
end
  end
end
EOF
  self.file_check_and_puts(path, content)
end

.generate_type_specObject



54
55
56
57
58
59
60
61
62
63
64
65
# File 'lib/awspec/generator/template.rb', line 54

def self.generate_type_spec
  path = 'spec/type/' + @type.underscore + '_spec.rb'
  content = <<-"EOF"
require 'spec_helper'
Awspec::Stub.load '#{@type.underscore}'

describe #{@type.underscore}('my-#{@type.underscore.tr('_', '-')}') do
  it { should exist }
end
EOF
  self.file_check_and_puts(path, content)
end

.put_messageObject



123
124
125
126
127
128
129
130
131
132
# File 'lib/awspec/generator/template.rb', line 123

def self.put_message
  content = <<-"EOF"

Generate #{@type.camelize} template files.

* !! AND add '#{@type.underscore}' to Awspec::Helper::Type::TYPES in lib/awspec/helper/type.rb *
* !! AND add '#{@type.underscore}' client to lib/awspec/helper/finder.rb *

EOF
end