|
| 1 | +# frozen_string_literal: true |
| 2 | + |
| 3 | +# Cloud Foundry Java Buildpack |
| 4 | +# Copyright 2013-2020 the original author or authors. |
| 5 | +# |
| 6 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | +# you may not use this file except in compliance with the License. |
| 8 | +# You may obtain a copy of the License at |
| 9 | +# |
| 10 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | +# |
| 12 | +# Unless required by applicable law or agreed to in writing, software |
| 13 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | +# See the License for the specific language governing permissions and |
| 16 | +# limitations under the License. |
| 17 | + |
| 18 | +require 'spec_helper' |
| 19 | +require 'component_helper' |
| 20 | +require 'logging_helper' |
| 21 | +require 'java_buildpack/framework/java_cf_env' |
| 22 | + |
| 23 | +describe JavaBuildpack::Framework::JavaCfEnv do |
| 24 | + include_context 'with component help' |
| 25 | + include_context 'with console help' |
| 26 | + include_context 'with logging help' |
| 27 | + |
| 28 | + let(:configuration) { { 'enabled' => true } } |
| 29 | + |
| 30 | + it 'detects with Spring Boot 3 JAR', |
| 31 | + app_fixture: 'framework_java_cf_boot_3' do |
| 32 | + |
| 33 | + expect(component.detect).to eq("java-cf-env=#{version}") |
| 34 | + end |
| 35 | + |
| 36 | + it 'does not detect with Spring Boot < 3', |
| 37 | + app_fixture: 'framework_java_cf_boot_2' do |
| 38 | + |
| 39 | + expect(component.detect).to be_nil |
| 40 | + end |
| 41 | + |
| 42 | + it 'does not detect with Spring Boot 3 & java-cfenv present', |
| 43 | + app_fixture: 'framework_java_cf_exists' do |
| 44 | + |
| 45 | + expect(component.detect).to be_nil |
| 46 | + end |
| 47 | + |
| 48 | + context do |
| 49 | + let(:configuration) { { 'enabled' => false } } |
| 50 | + |
| 51 | + it 'does not detect if disabled', |
| 52 | + app_fixture: 'framework_java_cf_boot_3' do |
| 53 | + |
| 54 | + expect(component.detect).to be_nil |
| 55 | + end |
| 56 | + end |
| 57 | + |
| 58 | + it 'downloads additional libraries', |
| 59 | + app_fixture: 'framework_java_cf_boot_3', |
| 60 | + cache_fixture: 'stub-java-cfenv.jar' do |
| 61 | + |
| 62 | + component.compile |
| 63 | + |
| 64 | + expect(sandbox + "java_cf_env-#{version}.jar").to exist |
| 65 | + end |
| 66 | + |
| 67 | + it 'adds to additional libraries', |
| 68 | + app_fixture: 'framework_java_cf_boot_3', |
| 69 | + cache_fixture: 'stub-java-cfenv.jar' do |
| 70 | + |
| 71 | + component.release |
| 72 | + |
| 73 | + expect(additional_libraries).to include(sandbox + "java_cf_env-#{version}.jar") |
| 74 | + end |
| 75 | + |
| 76 | + it 'activates the cloud profile', |
| 77 | + app_fixture: 'framework_java_cf_boot_3', |
| 78 | + cache_fixture: 'stub-java-cfenv.jar' do |
| 79 | + |
| 80 | + component.release |
| 81 | + |
| 82 | + expect(environment_variables).to include('SPRING_PROFILES_INCLUDE=cloud') |
| 83 | + end |
| 84 | +end |
0 commit comments