Update limitations to reflect Ubuntu support
[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 development
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 desc "Run Beaker tests against Fedora 20 node."
61 task :fedora_20 do
62   sh "RS_SET=fedora-20 INSTALL_METHOD=rpm bundle exec rake beaker"
63 end
64
65 desc "Run Beaker tests against Fedora 21 node."
66 task :fedora_21 do
67   sh "RS_SET=fedora-21 INSTALL_METHOD=rpm bundle exec rake beaker"
68 end
69
70 desc "Run Beaker tests against Ubuntu 14.04 node."
71 task :ubuntu do
72   sh "RS_SET=ubuntu-1404 INSTALL_METHOD=tarball bundle exec rake beaker"
73 end
74
75 desc "All tests, including Beaker tests against all nodes."
76 task :acceptance => [
77   :test,
78   :centos,
79   :centos_tarball,
80   :fedora_20,
81   :fedora_21,
82   :ubuntu,
83 ]