Add sanity rake task to run quick, important tests
[integration/packaging/puppet-opendaylight.git] / Rakefile
1 # Temporary fix for error caused by third party gems. See:
2 # https://github.com/maestrodev/puppet-blacksmith/issues/14
3 # https://github.com/dfarrell07/puppet-opendaylight/issues/6
4 require 'puppet/version'
5 require 'puppet/vendor/semantic/lib/semantic' unless Puppet.version.to_f <3.6
6
7 require 'puppetlabs_spec_helper/rake_tasks'
8 require 'puppet-lint/tasks/puppet-lint'
9 require 'puppet-syntax/tasks/puppet-syntax'
10
11 # These two gems aren't always present, for instance
12 # on Travis with `--without local_only`
13 begin
14   require 'puppet_blacksmith/rake_tasks'
15 rescue LoadError
16 end
17
18 PuppetLint.configuration.relative = true
19 PuppetLint.configuration.send("disable_80chars")
20 PuppetLint.configuration.log_format = "%{path}:%{linenumber}:%{check}:%{KIND}:%{message}"
21 PuppetLint.configuration.fail_on_warnings = true
22
23 # Forsake support for Puppet 2.6.2 for the benefit of cleaner code.
24 # http://puppet-lint.com/checks/class_parameter_defaults/
25 PuppetLint.configuration.send('disable_class_parameter_defaults')
26 # http://puppet-lint.com/checks/class_inherits_from_params_class/
27 PuppetLint.configuration.send('disable_class_inherits_from_params_class')
28
29 exclude_paths = [
30   "bundle/**/*",
31   "pkg/**/*",
32   "vendor/**/*",
33   "spec/**/*",
34 ]
35 PuppetLint.configuration.ignore_paths = exclude_paths
36 PuppetSyntax.exclude_paths = exclude_paths
37
38 # Linting
39
40 task :metadata_lint do
41   sh "metadata-json-lint metadata.json"
42 end
43
44 task :travis_lint do
45   # Using "echo y" to accept interactive "install shell completion?" prompt
46   sh 'echo "y" | travis lint .travis.yml --debug'
47 end
48
49 # TODO: Add Coala helper
50
51 # CentOS VMs
52
53 desc "Beaker tests against CentOS 7 VM with latest Boron testing RPM"
54 task :cent_5test_vm do
55   sh "RS_SET=centos-7 INSTALL_METHOD=rpm RPM_REPO='opendaylight-5-testing' bundle exec rake beaker"
56 end
57
58 desc "Beaker tests against CentOS 7 VM with latest Carbon testing RPM"
59 task :cent_6test_vm do
60   sh "RS_SET=centos-7 INSTALL_METHOD=rpm RPM_REPO='opendaylight-6-testing' bundle exec rake beaker"
61 end
62
63 desc "Beaker tests against CentOS 7 VM with latest Boron release RPM"
64 task :cent_5rel_vm do
65   sh "RS_SET=centos-7 INSTALL_METHOD=rpm RPM_REPO='opendaylight-5-release' bundle exec rake beaker"
66 end
67
68 # CentOS Containers
69
70 desc "Beaker tests against CentOS 7 container with latest Boron testing RPM"
71 task :cent_5test_dock do
72   sh "RS_SET=centos-7-docker INSTALL_METHOD=rpm RPM_REPO='opendaylight-5-testing' bundle exec rake beaker"
73 end
74
75 desc "Beaker tests against CentOS 7 container with latest Carbon testing RPM"
76 task :cent_6test_dock do
77   sh "RS_SET=centos-7-docker INSTALL_METHOD=rpm RPM_REPO='opendaylight-6-testing' bundle exec rake beaker"
78 end
79
80 desc "Beaker tests against CentOS 7 container with latest Boron release RPM"
81 task :cent_5rel_dock do
82   sh "RS_SET=centos-7-docker INSTALL_METHOD=rpm RPM_REPO='opendaylight-5-release' bundle exec rake beaker"
83 end
84
85 # Multi-test helpers
86
87 desc "Run syntax, lint, and spec tests."
88 task :test => [
89   :syntax,
90   :lint,
91   :metadata_lint,
92   :travis_lint,
93   :spec,
94 ]
95
96 desc "Quick and important tests"
97 task :sanity=> [
98   :test,
99   :cent_6test_dock,
100 ]
101
102 desc "All tests, use VMs for Beaker tests"
103 task :acceptance_vm => [
104   :test,
105   :cent_5rel_vm,
106   :cent_5test_vm,
107   :cent_6test_vm,
108 ]
109
110 desc "All tests, use containers for Beaker tests"
111 task :acceptance_dock => [
112   :test,
113   :cent_5rel_dock,
114   :cent_5test_dock,
115   :cent_6test_dock,
116 ]