Merge "Revert "Only test Boron in Rakefile suites on ...""
[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}:%{line}:%{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 # CentOS VMs
50
51 desc "Beaker tests against CentOS 7 VM with latest Boron testing RPM"
52 task :cent_5test_vm do
53   sh "RS_SET=centos-7 RPM_REPO='opendaylight-5-testing' bundle exec rake beaker"
54 end
55
56 desc "Beaker tests against CentOS 7 VM with latest Carbon testing RPM"
57 task :cent_6test_vm do
58   sh "RS_SET=centos-7 RPM_REPO='opendaylight-6-testing' bundle exec rake beaker"
59 end
60
61 desc "Beaker tests against CentOS 7 VM with latest Boron release RPM"
62 task :cent_5rel_vm do
63   sh "RS_SET=centos-7 RPM_REPO='opendaylight-5-release' bundle exec rake beaker"
64 end
65
66 # CentOS Containers
67
68 desc "Beaker tests against CentOS 7 container with latest Boron testing RPM"
69 task :cent_5test_dock do
70   sh "RS_SET=centos-7-docker RPM_REPO='opendaylight-5-testing' bundle exec rake beaker"
71 end
72
73 desc "Beaker tests against CentOS 7 container with latest Carbon testing RPM"
74 task :cent_6test_dock do
75   sh "RS_SET=centos-7-docker RPM_REPO='opendaylight-6-testing' bundle exec rake beaker"
76 end
77
78 desc "Beaker tests against CentOS 7 container with latest Boron release RPM"
79 task :cent_5rel_dock do
80   sh "RS_SET=centos-7-docker RPM_REPO='opendaylight-5-release' bundle exec rake beaker"
81 end
82
83 # Ubuntu VMs
84
85 desc "Beaker tests against Ubuntu 16.04 VM with Boron release Deb"
86 task :ubuntu_5rel_vm do
87   sh "RS_SET=ubuntu-16 DEB_REPO='ppa:odl-team/boron' bundle exec rake beaker"
88 end
89
90 # Ubuntu Containers
91
92 desc "Beaker tests against Ubuntu 16.04 Container with Boron release Deb"
93 task :ubuntu_5rel_dock do
94   sh "RS_SET=ubuntu-16-docker DEB_REPO='ppa:odl-team/boron' bundle exec rake beaker"
95 end
96
97
98 # Multi-test helpers
99
100 desc "Run syntax, lint, and spec tests."
101 task :test => [
102   :syntax,
103   :lint,
104   :metadata_lint,
105   :travis_lint,
106   :spec,
107 ]
108
109 desc "Quick and important tests"
110 task :sanity=> [
111   :test,
112   :cent_6test_dock,
113 ]
114
115 desc "All tests, use VMs for Beaker tests"
116 task :acceptance5_vm => [
117   :test,
118   :cent_5rel_vm,
119   :ubuntu_5rel_vm,
120   :cent_5test_vm,
121 ]
122
123 desc "All tests, use VMs for Beaker tests"
124 task :acceptance6_vm => [
125   :test,
126   :cent_6test_vm,
127 ]
128
129 desc "All tests, use containers for Beaker tests"
130 task :acceptance5_dock => [
131   :test,
132   :cent_5rel_dock,
133   :ubuntu_5rel_dock,
134   :cent_5test_dock,
135 ]
136
137 # TODO: Update .deb to Carbon and add a ubuntu_6test_dock test
138 desc "All tests, use containers for Beaker tests"
139 task :acceptance6_dock => [
140   :test,
141   :cent_6test_dock,
142 ]