Puppet Class: php::phpunit

Inherits:
php::params
Defined in:
manifests/phpunit.pp

Overview

Install phpunit, PHP testing framework

Parameters

source

Holds URL to the phpunit source file

path

Holds path to the phpunit executable

auto_update

Defines if phpunit should be auto updated

max_age

Defines the time in days after which an auto-update gets executed

Parameters:

  • source (String) (defaults to: $php::params::phpunit_source)
  • path (Stdlib::Absolutepath) (defaults to: $php::params::phpunit_path)
  • root_group (String[1]) (defaults to: $php::params::root_group)
  • auto_update (Boolean) (defaults to: true)
  • max_age (Integer) (defaults to: $php::params::phpunit_max_age)


17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# File 'manifests/phpunit.pp', line 17

class php::phpunit (
  String $source             = $php::params::phpunit_source,
  Stdlib::Absolutepath $path = $php::params::phpunit_path,
  String[1] $root_group      = $php::params::root_group,
  Boolean $auto_update       = true,
  Integer $max_age           = $php::params::phpunit_max_age,
) inherits php::params {
  assert_private()

  stdlib::ensure_packages(['wget'])

  exec { 'download phpunit':
    command => "wget ${source} -O ${path}",
    creates => $path,
    path    => ['/bin/', '/sbin/' , '/usr/bin/', '/usr/sbin/', '/usr/local/bin', '/usr/local/sbin'],
    require => [Class['php::cli'],Package['wget']],
  }
  -> file { $path:
    mode  => '0555',
    owner => root,
    group => $root_group,
  }

  if $auto_update {
    class { 'php::phpunit::auto_update':
      max_age => $max_age,
      source  => $source,
      path    => $path,
    }
  }
}