#!/bin/bash
#
# functions - puppet-openstack_spec_helper specific functions
#

prepare_environment() {
  rm -rf puppet-whazz default-config.yaml
  mkdir -p .bundled_gems
  export GEM_HOME=`pwd`/.bundled_gems
  export GEM_BIN_DIR=$GEM_HOME/bin
  ruby <<EOF
cmd = 'gem install bundler --no-document --verbose --bindir=${GEM_BIN_DIR}'
if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.3.0') then
  cmd += ' -v 1.17.3'
end
system(cmd)
EOF

  # Build fake module
  OS_NEW_MODULE_TEST=yes bash -x ./contrib/bootstrap.sh whazz dummy
  cd puppet-whazz/x/puppet-modulesync-configs/modules/puppet-whazz

  $GEM_HOME/bin/bundle install
}