[Puppet-dev] Puppet Labs :Jenkins

2012-10-08 Thread Dominic Maraglia
All, We are performing regularly scheduled maintenance on our data center and Jenkins system; you may see sporadic failures over the next four hours. Thanks for your patience. -- Dominic Maraglia SQA Engineer/QA Manager Puppet Labs -- You received this message because you are subscribed to

[Puppet-dev] [PATCH/puppet 1/1] (maint) Cleanup and strengthen acceptance tests

2011-07-14 Thread Dominic Maraglia
Converted plain regex checks to use Test::Unit::Accertions. Adding more verbose output in the case of failure to speeed debugging. Signed-off-by: Dominic Maraglia --- acceptance/tests/jeff_append_to_array.rb |9 --- ...file_should_create_a_file_and_report_the_md5.rb |9

[Puppet-dev] [PATCH/puppet 1/1] (maint) Fix platform dection for RHEL

2011-07-12 Thread Dominic Maraglia
Detecting supported platform used incorrect string for RHEL. Changed string from 'redhat' to 'rhel' Signed-off-by: Dominic Maraglia --- .../ticket_4123_should_list_all_running_redhat.rb |3 +-- .../ticket_4124_should_list_all_disabled.rb|2 +- 2 files c

[Puppet-dev] [PATCH/puppet 1/1] (#7956) Porting cron tests

2011-06-27 Thread Dominic Maraglia
Ported cron tests were still weak. Coverted tests to use Ruby asserts for better debugging of subsequent failures. Add stronger regex's to look for expected output when applying puppet resource manifests. Signed-off-by: Dominic Maraglia --- .../tests/resource/cron/should_create_cr

[Puppet-dev] [PATCH/puppet 1/1] (#7956) Port resource acceptance tests

2011-06-27 Thread Dominic Maraglia
Many of the Puppet resource acceptance tests were RHEL/Centos specifc. These tests were ported under the enterptise-dist repo; move the tests into 2.6.x for merging. Signed-off-by: Dominic Maraglia --- .../tests/resource/cron/should_create_cron.rb |6 ++-- .../tests/resource/cron

[Puppet-dev] [PATCH/puppet 1/1] (#6418) Make test 64118 more portable

2011-06-10 Thread Dominic Maraglia
Test used a bash command negation to negate the a grep: '! grep ensure.*directory /var/opt/lib/pe-puppet/state/state.yaml' which only works on newer bash shells only. Removed the shell negation and use the harnesses ":acceptable_exit_codes" parameter. Signed-off-

[Puppet-dev] [PATCH/puppet 1/1] (4123) Fix test for 4123/4 on old egrep in cent4

2011-05-24 Thread Dominic Maraglia
Older versions of egrep do not support the character class "\s". Changed: puppet resource service | egrep -B1 "ensure\s*=>.*'running" to: puppet resource service | egrep -B1 "ensure.*=>.*'running" Signed-off-by: Dominic Maraglia --- .../ticket_

[Puppet-dev] [PATCH/puppet 1/1] add puppet master polling step for ticket 7117

2011-05-20 Thread Dominic Maraglia
From: Dominic Maraglia The test for ticket 7117 producedes spurious failures due to timing: a curl command is executed from an agent to a freshly started Puppet Master; if the Puppet Master is not ready to accept the connection the test will fail. Added an until loop that issues simple curl