Only do Carbon tests on master/carbon branches
[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 # TODO: Add ubuntu_6test_dock task
66
67 # Ubuntu Containers
68
69 # TODO: Add ubuntu_6test_dock task
70
71 # Multi-test helpers
72
73 desc "Run syntax, lint, and spec tests."
74 task :test => [
75   :syntax,
76   :lint,
77   :metadata_lint,
78   :travis_lint,
79   :spec,
80 ]
81
82 desc "Quick and important tests"
83 task :sanity=> [
84   :test,
85   :cent_6test_dock,
86 ]
87
88 # TODO: Update .deb to Carbon and add a ubuntu_6test_vm test
89 desc "All tests, use VMs for Beaker tests"
90 task :acceptance_vm => [
91   :test,
92   :cent_6test_vm,
93 ]
94
95 # TODO: Update .deb to Carbon and add a ubuntu_6test_dock test
96 desc "All tests, use containers for Beaker tests"
97 task :acceptance_dock => [
98   :test,
99   :cent_6test_dock,
100 ]