diff options
author | Joshua Harlow <harlowja@gmail.com> | 2014-10-11 16:59:50 -0700 |
---|---|---|
committer | Joshua Harlow <harlowja@gmail.com> | 2014-10-11 16:59:50 -0700 |
commit | d87e89d9c674bac7e87d483037850a9ee4fc984a (patch) | |
tree | ad30f34179a8d8aa64552357a1808cffe863d736 /tests | |
parent | 9452f1247f69c2a8e8dedaac804f3c95bff0821b (diff) | |
download | vyos-cloud-init-d87e89d9c674bac7e87d483037850a9ee4fc984a.tar.gz vyos-cloud-init-d87e89d9c674bac7e87d483037850a9ee4fc984a.zip |
More adjustments
- Use the generated_by() utility function to
give the ruby template a better header comment
- Set special parameters after selecting the basic
chef parameters.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unittests/test_handler/test_handler_chef.py | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/tests/unittests/test_handler/test_handler_chef.py b/tests/unittests/test_handler/test_handler_chef.py index de7ff2da..ef1aa208 100644 --- a/tests/unittests/test_handler/test_handler_chef.py +++ b/tests/unittests/test_handler/test_handler_chef.py @@ -1,5 +1,5 @@ -import os import json +import os from cloudinit.config import cc_chef @@ -38,6 +38,24 @@ class TestChef(t_help.FilesystemMockingTestCase): self.assertFalse(os.path.isdir(d)) def test_basic_config(self): + # This should create a file of the format... + """ + # Created by cloud-init v. 0.7.6 on Sat, 11 Oct 2014 23:57:21 +0000 + log_level :info + ssl_verify_mode :verify_none + log_location "/var/log/chef/client.log" + validation_client_name "bob" + validation_key "/etc/chef/validation.pem" + client_key "/etc/chef/client.pem" + chef_server_url "localhost" + environment "_default" + node_name "iid-datasource-none" + json_attribs "/etc/chef/firstboot.json" + file_cache_path "/var/cache/chef" + file_backup_path "/var/backups/chef" + pid_file "/var/run/chef/client.pid" + Chef::Log::Formatter.show_time = true + """ tpl_file = util.load_file('templates/chef_client.rb.tmpl') self.patchUtils(self.tmp) self.patchOS(self.tmp) |