summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDominic Maraglia <dmaraglia@gmail.com>2011-04-26 13:53:47 -0700
committerDominic Maraglia <dmaraglia@gmail.com>2011-04-26 13:53:47 -0700
commit2cce3265885578910154854cf80ceb4d48ac631f (patch)
tree4fcd1e4eb4565022b1bb7b6fd97a21cd36760d53
parent1ee6f949416a269cc7103dc1ae863fc0f91c7a8b (diff)
add test for ticket 7101
-rw-r--r--acceptance/tests/ticket_7101_template_compile.rb25
1 files changed, 25 insertions, 0 deletions
diff --git a/acceptance/tests/ticket_7101_template_compile.rb b/acceptance/tests/ticket_7101_template_compile.rb
new file mode 100644
index 000000000..d2ebecd13
--- /dev/null
+++ b/acceptance/tests/ticket_7101_template_compile.rb
@@ -0,0 +1,25 @@
+test_name "#7101: template compile"
+
+manifest = %q{
+$bar = 'test 7101'
+file { '/tmp/file_7101.erb':
+ content => template('/tmp/template_7101.erb')
+}
+}
+
+
+step "Agents: Create template file"
+agents.each do |host|
+ create_remote_file(host, '/tmp/template_7101.erb', %w{<%= bar %>} )
+end
+
+step "Run manifest referencing template file"
+apply_manifest_on(agents, manifest)
+
+
+step "Agents: Verify file is created with correct contents "
+agents.each do |host|
+ on(host, "cat /tmp/file_7101.erb") do
+ assert_match(/test 7101/, stdout, "File /tmp/file_7101.erb not created with correct contents on #{host}" )
+ end
+end