Sha256: 62068345d4c25963c4f48c8f2ca54054cfd8151f46778e5c198f9e0f05686889

Contents?: true

Size: 832 Bytes

Versions: 5

Compression:

Stored size: 832 Bytes

Contents

require_relative './test_xml_generator'

class TestXmlPostbuildScript < Test::Unit::TestCase
  def test_postbuild_shell
    builder = JenkinsJob::Builder.new

    builder.freestyle 'foo' do
      postbuild do
        shell 'cd Reports && mv $(ls *.xml) merge.xml'
        batch 'hostname'
        powershell 'Write-Host "hello world"'
      end
    end

    actual = builder.config_as_xml_node('foo')
    { 'hudson.tasks.Shell/command' => 'cd Reports && mv $(ls *.xml) merge.xml',
      'hudson.tasks.BatchFile/command' => 'hostname',
      'hudson.plugins.powershell.PowerShell/command' => 'Write-Host "hello world"',
    }.each do |k, v|
      assert_equal v, actual.xpath('./project/publishers/' \
        "org.jenkinsci.plugins.postbuildscript.PostBuildScript/buildSteps/#{k}").text, k
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rubyjobbuilderdsl-0.0.5 test/test_postbuild_script.rb
rubyjobbuilderdsl-0.0.3 test/test_postbuild_script.rb
rubyjobbuilderdsl-0.0.2 test/test_postbuild_script.rb
rubyjobbuilderdsl-0.0.1 test/test_postbuild_script.rb
rubyjobbuilderdsl-0.0.0 test/test_postbuild_script.rb