Update mod version and pup version in metadata
[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 do
39   sh "metadata-json-lint metadata.json"
40 end
41
42 desc "Run syntax, lint, and spec tests."
43 task :test => [
44   :syntax,
45   :lint,
46   :spec,
47   :metadata,
48 ]
49
50 desc "Run Beaker tests against CentOS 7 node."
51 task :centos do
52   sh "RS_SET=centos-7 INSTALL_METHOD=rpm bundle exec rake beaker"
53 end
54
55 desc "Run Beaker tests against CentOS 7 using tarball install."
56 task :centos_tarball do
57   sh "RS_SET=centos-7 INSTALL_METHOD=tarball bundle exec rake beaker"
58 end
59
60 # NB: The centos:7.0.1406 and centos:7.1.1503 tags have fakesytemd, not
61 # the actually-functional systemd-container installed on centos:7
62 # https://github.com/CentOS/sig-cloud-instance-build/commit/3bf1e7bbf14deaa8c047c1dfbead6d0e8d0665f2
63 desc "Run Beaker tests against CentOS 7 Docker node."
64 task :centos_7_docker do
65   sh "RS_SET=centos-7-docker INSTALL_METHOD=rpm bundle exec rake beaker"
66 end
67
68 desc "Run Beaker tests against Fedora 22 node."
69 task :fedora_22 do
70   sh "RS_SET=fedora-22 INSTALL_METHOD=rpm bundle exec rake beaker"
71 end
72
73 desc "Run Beaker tests against Ubuntu 14.04 node."
74 task :ubuntu_1404 do
75   sh "RS_SET=ubuntu-1404 INSTALL_METHOD=tarball bundle exec rake beaker"
76 end
77
78 desc "Run Beaker tests against Ubuntu 14.04 Docker node."
79 task :ubuntu_1404_docker do
80   sh "RS_SET=ubuntu-1404-docker INSTALL_METHOD=tarball bundle exec rake beaker"
81 end
82
83 # Note: Puppet currently doesn't support Ubuntu versions newer than 14.04
84 # https://docs.puppetlabs.com/guides/install_puppet/install_debian_ubuntu.html
85
86 desc "All tests, including Beaker tests against all nodes."
87 task :acceptance => [
88   :test,
89   :centos_7_docker,
90   :ubuntu_1404_docker,
91 ]