-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuildpack_spec.rb
80 lines (74 loc) · 3.17 KB
/
buildpack_spec.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# frozen_string_literal: true
require_relative '../spec_helper'
RSpec.describe 'Buildpack execution' do
context 'when building a valid .NET app' do
let(:app) { Hatchet::Runner.new('spec/fixtures/basic_web_8.0') }
it 'successfully compiles' do
app.deploy do |app|
expect(clean_output(app.output)).to match(Regexp.new(<<~REGEX))
remote: -----> Using buildpack: #{DEFAULT_BUILDPACK_URL}
remote: -----> .NET app detected
remote: -----> SDK version detection
remote: Detected .NET file to publish: `/tmp/build_.*/foo.csproj`
remote: Inferring version requirement from `/tmp/build_.*/foo.csproj`
remote: Detected version requirement: .*
remote: Resolved .NET SDK version .*
remote: -----> SDK installation
remote: Downloading SDK from .*
remote: Verifying SDK checksum
remote: Installing SDK
remote: -----> Publish solution
remote: Using `Release` build configuration
remote: Running `dotnet publish /tmp/build_.*/foo.csproj --runtime linux-x64 "-p:PublishDir=bin/publish" --artifacts-path /tmp/build_artifacts`
remote:
remote: Determining projects to restore...
remote: Restored /tmp/build_.*/foo.csproj .*
remote: foo -> /tmp/build_artifacts/bin/foo/release_linux-x64/foo.dll
remote: foo -> /tmp/build_.*/bin/publish/
remote:
remote: Done .*
remote: -----> Process types
remote: Detecting process types from published artifacts
remote: Found `foo`: .*
remote: No Procfile detected
remote: Registering detected process types as launch processes
remote: -----> Done .*
remote: -----> Discovering process types
remote: Procfile declares types -> \\(none\\)
remote: Default types for buildpack -> foo
REGEX
expect(app.run('bin/test-runtime.sh')).to match('All dynamically linked libraries were found.')
end
end
end
context 'when building an app with MSBUILD_VERBOSITY_LEVEL=invalid' do
let(:app) do
Hatchet::Runner.new(
'spec/fixtures/basic_web_8.0',
config: { 'MSBUILD_VERBOSITY_LEVEL' => 'invalid' },
allow_failure: true
)
end
it 'fails with error from CNB' do
app.deploy do |app|
expect(clean_output(app.output)).to include(<<~OUTPUT)
remote: ! Invalid MSBuild verbosity level
remote: !
remote: ! The `MSBUILD_VERBOSITY_LEVEL` environment variable value (`invalid`)
remote: ! is invalid. Did you mean one of the following supported values?
remote: !
remote: ! d
remote: ! detailed
remote: ! diag
remote: ! diagnostic
remote: ! m
remote: ! minimal
remote: ! n
remote: ! normal
remote: ! q
remote: ! quiet
OUTPUT
end
end
end
end