summaryrefslogtreecommitdiffstats
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
* Fixes tests broken by 95aa085James Turnbull2008-08-271-0/+10
|
* Fix leaking LoadedFile when adding templates to be watchedAndrew Shafer2008-08-231-0/+8
|
* Fixed $1456 - add proxy configuration to yum repoJames Turnbull2008-08-131-1/+7
|
* Add testing for the changes to resolve redmine #1427, where Kernel methods ↵Daniel Pittman2008-08-012-11/+108
| | | | | | | | | | | | | | | | | | | | | | | | | shadow variables that the puppet template should otherwise see. Specific changes: * Added testing of the Scope#to_hash method, which returns a hash of name and value pairs in a scope or, optionally, in the scope and enclosing scopes. * Use member variables rather than methods in the function tests. * Fix up tests that fail once we move over to instance variables rather than methods: Puppet can no longer detect an undefined variable reference, so we end up failing any test that expected to get a parser error. * Several tests have manual checks introduced to simulate an end user manually writing the checks that used to be automatic, and others drop the validation that parsing fails when a variable is not in scope. * Added tests for legacy variable lookup and that the shadowing of local variables by Kernel methods is still in effect. Signed-off-by: Daniel Pittman <daniel@rimspace.net> (cherry picked from commit 5c5f315cceadc52203e53883b77bc01c1d7a2e7f)
* Feature #1241 : Improve performance of group lookupsJames Turnbull2008-07-291-2/+15
|
* Fixing a cert test to pass on Darwin.Luke Kanies2008-07-211-17/+26
| | | | | | | Darwin has a case-insensitive FS, so the test was failing because it was specifically testing case sensitivity. Signed-off-by: Luke Kanies <luke@madstop.com>
* 'Fix' broken tests related to missing source raisingAndrew Shafer2008-07-201-18/+2
| | | | | | Issue 1437 In two cases, I removed the assertion that caused the failure. In one case, I changed the assertion to expect an exception.
* You can now select the encoding format when transferring the catalog,Luke Kanies2008-07-181-0/+34
| | | | | | | | | | with 'yaml' still being the default but 'marshal' being an option. This is because testing has shown drastic performance differences between the two, with up to 70% of compile time being spent in YAML code. Use the 'catalog_format' setting to choose your format, and the setting must be set on the client. Signed-off-by: Luke Kanies <luke@madstop.com>
* Fixed #1431 - Provider confines must now specify similar tests in one call.Luke Kanies2008-07-171-45/+0
| | | | | | | | | | I.e., you can't do confine :operatingsystem => %w{a b} and then confine :operatingsystem => %w{b c}; you'd need to do them in one command. This now-obsolete behaviour does not seem to be used anywhere. The fix for #1431 is actually just removing the tests that exposed this change; the change happened when I refactored how confines work. Signed-off-by: Luke Kanies <luke@madstop.com>
* The mongrel-related tests now run without mongrel.Luke Kanies2008-07-171-0/+3
| | | | | | | | | | | Here were the main changes necessary: * Fixed the class loader so it only loads mongrel if it's available. * Fixed the test runner to skip example groups contained in non-runnable example groups. * Fixed the Mongrel tests to use quoted class names instead of constants, since the constants themselves would be absent. Signed-off-by: Luke Kanies <luke@madstop.com>
* Merge branch 'refactor/0.24.x/transaction_changes' of ↵James Turnbull2008-07-053-147/+6
|\ | | | | | | git://github.com/lak/puppet into 0.24.x
| * Refactoring the Transaction::Event class.Luke Kanies2008-07-042-4/+3
| | | | | | | | | | | | | | | | | | | | | | The class had a 'transaction' accessor that was assigned but never used, and it is simple enough that it needed direct arguments rather than named arguments. The rest of the code is changing the other classes that use Events. Signed-off-by: Luke Kanies <luke@madstop.com>
| * Adding tests to the Transaction::Change class.Luke Kanies2008-07-041-140/+0
| | | | | | | | | | | | | | There's a small amount of refactoring here, mostly removing code that appears to not be used at all. Signed-off-by: Luke Kanies <luke@madstop.com>
| * Renaming Puppet::Event to Puppet::Transaction::EventLuke Kanies2008-07-032-5/+5
| | | | | | | | Signed-off-by: Luke Kanies <luke@madstop.com>
| * Renaming the Puppet::PropertyChange class to Puppet::Transaction::Change.Luke Kanies2008-07-031-2/+2
| | | | | | | | Signed-off-by: Luke Kanies <luke@madstop.com>
* | Updated test/ral/type/sshkey.rb testJames Turnbull2008-07-041-1/+0
|/
* Fixing #1382 - existing uppercase certs, keys, et al will be renamed.Luke Kanies2008-07-021-1/+19
| | | | This correctly renames the files and they still get read in.
* Fixed #1114 - Facts in plugin directories should now be autoloaded,Luke Kanies2008-07-011-6/+10
| | | | as long as you're using Facter 1.5.
* Fixed #707 - special '@reboot'-style cron jobs work again.Luke Kanies2008-06-171-4/+5
|
* Removed test/util/loadedfile.rb tests which fixes #1370James Turnbull2008-06-171-121/+0
|
* Fixes for install.rb running of tests that fixes #1267James Turnbull2008-05-271-0/+3
|
* Merge branch 'tickets/1265' of git://github.com/lak/puppet into 0.24.xJames Turnbull2008-05-271-0/+1
|\
| * Fixing #1265 -- the ca/client tests now all pass again.Luke Kanies2008-05-261-0/+1
| |
* | Always using the cert name to store yaml files, which fixes #1178.Luke Kanies2008-05-262-63/+37
|/ | | | | | | | | | | | | | | | | | | The Master handler previously provided the support for the :node_name setting, and that functionality has now been moved into the Node class. At the same time, the names to search through have been changed somewhat: Previously, the certificate name and the hostname were both used for searching, but now, the cert name is always searched first (unless node_name == facter), but only the Facter hostname, domain, and fqdn are used otherwise. We no longer split the cert name, only the hostname/domain/fqdn. In the general case, this provides no behaviour change, because people's hostname is the same as their certname. This only results in a change in behaviour if you specify a certificate name that is a normal node name, and you want to look that node up by something other than the full name in the certificate. Signed-off-by: Luke Kanies <luke@madstop.com>
* Fixing transaction support for prefetching generated resources.Luke Kanies2008-05-211-9/+48
| | | | | | Previously, we prefetched then generated, which caused generated resources that needed prefetching not to work. This just reorders the calls, so generated resources now get prefetched.
* Crontab provider: fix a parse error when a line begins with a space characterJames Turnbull2008-05-161-0/+28
| | | | | | Tests for Bug #1216 Updated CHANGELOG
* Moving all confine code out of the Provider class, and fixing #1197.Luke Kanies2008-05-151-1/+1
| | | | | | | | | I created a Confiner module for the Provider class methods, and then I enhanced the interface between it and the Confine class to make sure binary paths are searched for fresh each time. This fixes #1197, which was a result of binary paths being searched for at startup, rather than at execution.
* Switching the Provider class to use the new Confiner class.Luke Kanies2008-05-151-7/+16
|
* Duh, fixing all of the paths being loaded for spec in the moved tests.Luke Kanies2008-05-151-0/+12
|
* New native ssh_authorized_key typeFrancois Deppierraz2008-05-072-0/+7
|
* Resources now return the 'should' value for properties fromLuke Kanies2008-04-111-37/+0
| | | | | | | the [] accessor method (they previously threw an exception when this method was used with properties). This shouldn't have any affect functionally; it just makes the method equivalent to 'should' for properties, but it works for all attribute types now.
* Modified the 'master' handler to use the Catalog class toLuke Kanies2008-04-112-204/+9
| | | | | | | | | | compile node configurations, rather than using the Configuration handler, which was never used directly. I removed the Configuration handler as a result. Modified the 'master' handler (responsible for sending configurations to clients) to always return Time.now as its compile date, so configurations will always get recompiled.
* Fixed #1184 -- definitions now autoload correctly all of the time.Luke Kanies2008-04-101-1/+8
|
* Removed the code from the client that tries to avoid recompilingLuke Kanies2008-04-101-110/+0
| | | | | | the catalog. The client will now always recompile, assuming it can reach the server. It will still use the cached config if there's a failure.
* Adding validation to the user type to confirm that theLuke Kanies2008-04-081-0/+6
| | | | | group list does not contain any commas. This seems to be a common problem.
* Fixes #1148 - replaces #!/usr/bin/ruby with #!/usr/bin/env ruby.Paul Lathrop2008-03-281-1/+1
|
* Fixing #571 -- provider suitability is now checked at resourceLuke Kanies2008-03-241-5/+21
| | | | | | | evaluation time, rather than resource instantiation time. This means that you don't catch your "errors" as early, but it also means you should be able to realistically configure a whole host in one run.
* Fixing a couple of tests.Luke Kanies2008-03-243-36/+35
|
* Found all instances of methods where split() is used withoutLuke Kanies2008-03-211-1/+0
| | | | | | | | | | any local variables and added a local variable -- see http://snurl.com/21zf8. My own testing showed that this caused memory growth to level off at a reasonable level. Note that the link above says the problem is only with class methods, but my own testing showed that it's any method that meets these criteria. This is not a functional change, but should hopefully be the last nail in the coffin of #1131.
* Found an array that leaked pretty quickly between reparsingLuke Kanies2008-03-211-0/+1
| | | | | | | | | | files, thanks to work by Adam Jacob and Arjuna Christenson (the finding, not the leak). I'm going to act like this fixes #1131, at least for now, but I doubt it does, since that shows general memory growth over time, whereas the leak here should go away as soon as files are reparsed (because the parser is holding the reference to the leaking array).
* tweak the (already applied) patch in ↵Sam Quigley2008-03-201-0/+4
| | | | 388cf7c3df7ce26e953949ed6fe63d76cbbb3691 to resolve #1137; also, add tests which detect the problem.
* fixing another failing testLuke Kanies2008-03-191-0/+2
|
* Fixing some tests that only failed under certainLuke Kanies2008-03-183-3/+6
| | | | | circumstances (mostly, when loaded with other files, or when loaded from rake or autotest rather than separately).
* Regression in :node_name functionalityJohn Ferlito2008-03-141-2/+9
| | | | When :node_name="cert" is specified the 'hostname' fact should be set to the SSL certificate common name instead of the results from facter. I've extended this to also set 'domain' and 'fqdn' since that makes a lot of sense to me. This fixes a regression introduced in SVN#1673
* Fixing #1132 -- host names can now have dashes anywhere.Luke Kanies2008-03-131-0/+44
| | | | (Patch by freiheit.)
* Fixing #1118 -- downloading plugins and facts now ignores noop.Luke Kanies2008-03-131-16/+0
| | | | | | Note that this changes the behaviour a bit -- the resource's noop setting always beats the global setting (previously, whichever was true would win).
* Always duplicating resource defaults in the parser, so thatLuke Kanies2008-03-061-159/+0
| | | | | | stacked metaparameter values do not result in all resources that receive a given default also getting those stacked values.
* Fixing a few testsLuke Kanies2008-02-292-6/+1
|
* Fixing tests that did not work with Rails 2.Luke Kanies2008-02-292-0/+3
|
* Fixing a test that changed the environment for all later tests,Luke Kanies2008-02-291-9/+1
| | | | thus breaking some of them.