Pin Coala to <0.11 to avoid bug
[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 Carbon testing RPM"
52 task :cent_6test_vm do
53   sh "RS_SET=centos-7 RPM_REPO='opendaylight-6-testing' bundle exec rake beaker"
54 end
55
56 # CentOS Containers
57
58 desc "Beaker tests against CentOS 7 container with latest Carbon testing RPM"
59 task :cent_6test_dock do
60   sh "RS_SET=centos-7-docker RPM_REPO='opendaylight-6-testing' bundle exec rake beaker"
61 end
62
63 # Ubuntu VMs
64
65 desc "Beaker tests against Ubuntu 16.04 Container with Boron release Deb"
66 task :ubuntu_6test_vm do
67   sh "RS_SET=ubuntu-16 DEB_REPO='ppa:odl-team/carbon' bundle exec rake beaker"
68 end
69
70 # Ubuntu Containers
71
72 desc "Beaker tests against Ubuntu 16.04 Container with Boron release Deb"
73 task :ubuntu_6test_dock do
74   sh "RS_SET=ubuntu-16-docker DEB_REPO='ppa:odl-team/carbon' bundle exec rake beaker"
75 end
76
77 # Multi-test helpers
78
79 desc "Run syntax, lint, and spec tests."
80 task :test => [
81   :syntax,
82   :lint,
83   :metadata_lint,
84   :travis_lint,
85   :spec,
86 ]
87
88 desc "Quick and important tests"
89 task :sanity=> [
90   :test,
91   :cent_6test_dock,
92 ]
93
94 desc "All tests, use VMs for Beaker tests"
95 task :acceptance_vm => [
96   :test,
97   :ubuntu_6test_vm,
98   :cent_6test_vm,
99 ]
100
101 desc "All tests, use containers for Beaker tests"
102 task :acceptance_dock => [
103   :test,
104   :ubuntu_6test_dock,
105   :cent_6test_dock,
106 ]