summaryrefslogtreecommitdiffstats
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
...
| * 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
| |
* | Fixing some broken tests.Luke Kanies2008-05-072-1/+2
| | | | | | | | | | | | | | The HttpPool module now removes its cached ssl_host instance when clearing its cache. This is really only useful for testing, but it correctly causes the pool to use new certificates when they're available.
* | Removing obsolete testsLuke Kanies2008-05-071-101/+0
| |
* | The master and client now successfully speak xmlrpc using the new system.Luke Kanies2008-05-072-148/+0
| | | | | | | | | | | | The server is actually serving REST, but the client can't use it until we resolve the format and security issues that REST hasn't yet tackled.
* | Added an Interface class to the CA to model puppetca's usage.Luke Kanies2008-04-191-115/+0
| | | | | | | | | | | | | | | | | | | | This class provides all of the semantics from puppetca, and appears to entirely duplicate the behaviour of the existing executable, with basically all of the code in a library file, instead of the executable. As such, I've deleted the test for the executable. We should have one, but it's not nearly as important.
* | Fixing a couple of broken tests.Luke Kanies2008-04-151-0/+1
| |
* | Merge branch '0.24.x'Luke Kanies2008-04-117-353/+24
|\|
| * 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 the tests in test/ that were broken asLuke Kanies2008-04-016-191/+47
| | | | | | | | a result of the move to no global resources.
* | Merge branch 'master' into master_no_global_resourcesLuke Kanies2008-03-3196-3550/+529
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: lib/puppet/node/catalog.rb lib/puppet/type/pfile.rb lib/puppet/type/pfilebucket.rb lib/puppet/util/filetype.rb spec/unit/node/catalog.rb spec/unit/other/transbucket.rb spec/unit/ral/provider/mount/parsed.rb spec/unit/ral/types/file.rb spec/unit/ral/types/interface.rb spec/unit/ral/types/mount.rb spec/unit/ral/types/package.rb spec/unit/ral/types/schedule.rb spec/unit/ral/types/service.rb test/language/compile.rb test/language/lexer.rb test/language/snippets.rb test/lib/puppettest.rb test/ral/types/basic.rb test/ral/types/cron.rb test/ral/types/exec.rb test/ral/types/file.rb test/ral/types/file/target.rb test/ral/types/filebucket.rb test/ral/types/fileignoresource.rb test/ral/types/filesources.rb test/ral/types/group.rb test/ral/types/host.rb test/ral/types/parameter.rb test/ral/types/sshkey.rb test/ral/types/tidy.rb test/ral/types/user.rb test/ral/types/yumrepo.rb
| * | Merge branch '0.24.x'Luke Kanies2008-03-257-42/+61
| |\| | | | | | | | | | | | | | | | | | | | | | Conflicts: install.rb lib/puppet/defaults.rb man/man8/puppet.8
| | * 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.
| * | Merge branch '0.24.x'Luke Kanies2008-03-207-21/+61
| |\|
| | * 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).
| * | Merge branch '0.24.x'Luke Kanies2008-03-071-159/+0
| |\|
| | * 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.
| * | Merge branch '0.24.x'Luke Kanies2008-03-0524-17/+7
| |\|
| | * 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.
| | * renaming ral/types to ral/type in the testsLuke Kanies2008-02-2821-0/+0
| | |
| | * Removed the loglevels from the valid values for 'logoutput'Luke Kanies2008-02-271-2/+2
| | | | | | | | | | | | | | | | | | | | | in the Exec resource type -- the log levels are specified using the 'loglevel' parameter, not 'logoutput'. This never worked, or at least hasn't for ages, and now the docs are just correct.
| * | Merge branch '0.24.x'Luke Kanies2008-02-2512-173/+137
| |\|
| | * Merge commit 'turnbull/0.24.x' into 0.24.xLuke Kanies2008-02-231-0/+18
| | |\
| | | * Fixes #1078 and includes new testJames Turnbull2008-02-231-0/+18
| | | |
| | * | Somewhat refactored fileserving so that it no longer cachesLuke Kanies2008-02-2311-163/+92
| | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | any objects, nor does it use Puppet's RAL resources. In the process, I fixed #894 (you can now copy links) and refactored other classes as necessary. Mostly it was fixing tests. This is a squashed commit of a temporary branch, fwiw, and it also includes any fixes to the tests that were necessary to get all tests passing again.
| | * Quashed commit of my fixes for #1010.Luke Kanies2008-02-211-11/+28
| | |
| * | Merge branch '0.24.x'Luke Kanies2008-02-183-6/+43
| |\| | | | | | | | | | | | | | | | | | | Conflicts: CHANGELOG man/man8/puppet.8
| | * Fixing comment -- ticket #1027 instead of #1064Luke Kanies2008-02-131-1/+1
| | |
| | * Fixing #1064 -- providers et al are now autoloadedLuke Kanies2008-02-131-5/+5
| | | | | | | | | | | | from modules even when Autoload#loadall is used.
| | * Fixed #1043 -- autoloading now searches the plugins directoryLuke Kanies2008-02-132-0/+21
| | | | | | | | | | | | | | | | | | in each module, in addition to the lib directory. The 'lib' directory is also deprecated, but supported for now to give people a chance to convert.
| | * Fixed #968 again, this time with tests -- parseonly works,Luke Kanies2008-02-131-0/+17
| | | | | | | | | | | | | | | including not compiling the configurations, and also storeconfigs is no longer required during parse-testing.
| | * Renaming the 'pfile' and 'pfilebucket' files to plainLuke Kanies2008-02-131-1/+0
| | | | | | | | | | | | | | | 'file' and 'filebucket'. This should have been done years ago.