24582241f00f6ac914929f1b1be2f8aacbdcd33d
[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 task :metadata_lint do
39   sh "metadata-json-lint metadata.json"
40 end
41
42 task :travis_lint do
43   sh "travis lint .travis.yml"
44 end
45
46 desc "Run syntax, lint, and spec tests."
47 task :test => [
48   :syntax,
49   :lint,
50   :spec,
51   :metadata_lint,
52 ]
53
54 desc "Run Beaker tests against CentOS 7 with latest Beryllium RPM"
55 task :centos_odl4testing do
56   sh "RS_SET=centos-7 INSTALL_METHOD=rpm RPM_REPO='opendaylight-4-testing' bundle exec rake beaker"
57 end
58
59 desc "Run Beaker tests against CentOS 7 with Beryllium SR2 4.2."
60 task :centos_odl42 do
61   sh "RS_SET=centos-7 INSTALL_METHOD=rpm RPM_REPO='opendaylight-42-release' bundle exec rake beaker"
62 end
63
64 desc "Run Beaker tests against CentOS 7 with Beryllium 4.0."
65 task :centos_odl40 do
66   sh "RS_SET=centos-7 INSTALL_METHOD=rpm RPM_REPO='opendaylight-40-release' bundle exec rake beaker"
67 end
68
69 desc "Run Beaker tests against CentOS 7 using tarball install."
70 task :centos_tarball do
71   sh "RS_SET=centos-7 INSTALL_METHOD=tarball bundle exec rake beaker"
72 end
73
74 # NB: The centos:7.0.1406 and centos:7.1.1503 tags have fakesytemd, not
75 # the actually-functional systemd-container installed on centos:7
76 # https://github.com/CentOS/sig-cloud-instance-build/commit/3bf1e7bbf14deaa8c047c1dfbead6d0e8d0665f2
77 desc "Run Beaker tests against CentOS 7 Docker node."
78 task :centos_docker do
79   sh "RS_SET=centos-7-docker INSTALL_METHOD=rpm bundle exec rake beaker"
80 end
81
82 desc "Run Beaker tests against Fedora 22 node."
83 task :fedora_22 do
84   sh "RS_SET=fedora-22 INSTALL_METHOD=rpm bundle exec rake beaker"
85 end
86
87 desc "Run Beaker tests against Fedora 23 node."
88 task :fedora_23 do
89   sh "RS_SET=fedora-23 INSTALL_METHOD=rpm bundle exec rake beaker"
90 end
91
92 desc "Run Beaker tests against Fedora 23 Docker node."
93 task :fedora_23_docker do
94   sh "RS_SET=fedora-23-docker INSTALL_METHOD=rpm bundle exec rake beaker"
95 end
96
97 desc "Run Beaker tests against Ubuntu 14.04 node."
98 task :ubuntu_1404 do
99   sh "RS_SET=ubuntu-1404 INSTALL_METHOD=tarball bundle exec rake beaker"
100 end
101
102 desc "Run Beaker tests against Ubuntu 14.04 Docker node."
103 task :ubuntu_1404_docker do
104   sh "RS_SET=ubuntu-1404-docker INSTALL_METHOD=tarball bundle exec rake beaker"
105 end
106
107 # Note: Puppet currently doesn't support Ubuntu versions newer than 14.04
108 # https://docs.puppetlabs.com/guides/install_puppet/install_debian_ubuntu.html
109
110 desc "All tests, including Beaker tests against all nodes."
111 task :acceptance => [
112   :test,
113   :centos_7_docker,
114 ]