Browse Source

Delete unused test configuration files

These files were used by the legacy ConfigFileApplicationListener tests
and are no longer needed
pull/30879/head
Madhura Bhave 4 years ago
parent
commit
7a0e5a032d
  1. 11
      spring-boot-project/spring-boot/src/test/resources/activeprofilerepro-ordered.yml
  2. 11
      spring-boot-project/spring-boot/src/test/resources/activeprofilerepro-without-override.yml
  3. 11
      spring-boot-project/spring-boot/src/test/resources/activeprofilerepro.yml
  4. 4
      spring-boot-project/spring-boot/src/test/resources/application-activeprofilewithdifferentsubdoc.yml
  5. 2
      spring-boot-project/spring-boot/src/test/resources/application-activeprofilewithsubdoc.yml
  6. 2
      spring-boot-project/spring-boot/src/test/resources/application-morespecific.properties
  7. 1
      spring-boot-project/spring-boot/src/test/resources/application-simple.properties
  8. 1
      spring-boot-project/spring-boot/src/test/resources/application-specific.properties
  9. 1
      spring-boot-project/spring-boot/src/test/resources/applicationloop-loop.properties
  10. 1
      spring-boot-project/spring-boot/src/test/resources/applicationloop.properties
  11. 6
      spring-boot-project/spring-boot/src/test/resources/applicationmultiprofiles.yml
  12. 67
      spring-boot-project/spring-boot/src/test/resources/cascadingprofiles.yml
  13. 3
      spring-boot-project/spring-boot/src/test/resources/enableprofileviaapplicationproperties.yml
  14. 2
      spring-boot-project/spring-boot/src/test/resources/profilenegation-b.yml
  15. 10
      spring-boot-project/spring-boot/src/test/resources/profilenegation-local-active-profiles.yml
  16. 4
      spring-boot-project/spring-boot/src/test/resources/profilenegation.yml
  17. 1
      spring-boot-project/spring-boot/src/test/resources/specificfile-specificprofile.properties
  18. 20
      spring-boot-project/spring-boot/src/test/resources/testnegatedprofiles.yml
  19. 14
      spring-boot-project/spring-boot/src/test/resources/testprofileexpression.yml
  20. 14
      spring-boot-project/spring-boot/src/test/resources/testprofilesdocument.yml
  21. 14
      spring-boot-project/spring-boot/src/test/resources/testprofilesempty.yml
  22. 11
      spring-boot-project/spring-boot/src/test/resources/testsetprofiles.yml

11
spring-boot-project/spring-boot/src/test/resources/activeprofilerepro-ordered.yml

@ -1,11 +0,0 @@ @@ -1,11 +0,0 @@
spring.profiles.active: A,B
---
spring.profiles: A
version: A
---
spring.profiles: B
version: B
---
spring.profiles: C
version: C
---

11
spring-boot-project/spring-boot/src/test/resources/activeprofilerepro-without-override.yml

@ -1,11 +0,0 @@ @@ -1,11 +0,0 @@
---
---
spring.profiles: A
version: A
---
spring.profiles: B
version: B
---
spring.profiles: C
version: C
---

11
spring-boot-project/spring-boot/src/test/resources/activeprofilerepro.yml

@ -1,11 +0,0 @@ @@ -1,11 +0,0 @@
spring.profiles.active: B
---
spring.profiles: A
version: A
---
spring.profiles: B
version: B
---
spring.profiles: C
version: C
---

4
spring-boot-project/spring-boot/src/test/resources/application-activeprofilewithdifferentsubdoc.yml

@ -1,4 +0,0 @@ @@ -1,4 +0,0 @@
---
spring.profiles: activeprofilewithdifferentsubdoc2
foobar: baz
---

2
spring-boot-project/spring-boot/src/test/resources/application-activeprofilewithsubdoc.yml

@ -1,2 +0,0 @@ @@ -1,2 +0,0 @@
spring.profiles: activeprofilewithsubdoc
foobar: baz

2
spring-boot-project/spring-boot/src/test/resources/application-morespecific.properties

@ -1,2 +0,0 @@ @@ -1,2 +0,0 @@
spring.profiles.include=yetmorespecific
spring.profiles.active=missing

1
spring-boot-project/spring-boot/src/test/resources/application-simple.properties

@ -1 +0,0 @@ @@ -1 +0,0 @@
spring.profiles.active=other

1
spring-boot-project/spring-boot/src/test/resources/application-specific.properties

@ -1 +0,0 @@ @@ -1 +0,0 @@
spring.profiles.include=morespecific

1
spring-boot-project/spring-boot/src/test/resources/applicationloop-loop.properties

@ -1 +0,0 @@ @@ -1 +0,0 @@
spring.profiles.include=loop

1
spring-boot-project/spring-boot/src/test/resources/applicationloop.properties

@ -1 +0,0 @@ @@ -1 +0,0 @@
spring.profiles.include=loop

6
spring-boot-project/spring-boot/src/test/resources/applicationmultiprofiles.yml

@ -1,6 +0,0 @@ @@ -1,6 +0,0 @@
spring.profiles.active: test, another-test
message: default
---
spring:
profiles: test,another-test
message: multiprofile

67
spring-boot-project/spring-boot/src/test/resources/cascadingprofiles.yml

@ -1,67 +0,0 @@ @@ -1,67 +0,0 @@
spring:
profiles:
active:
- A
- B
---
spring.profiles: A
spring:
profiles:
include:
- C
- E
version: A
---
spring.profiles: B
spring:
profiles:
include:
- D
- E
version: B
---
spring.profiles: C
version: C
---
spring.profiles: D
version: D
---
spring.profiles: E
version: E
---
spring.profiles: "!A"
not-a: true
---
spring.profiles: "!B"
not-b: true
---
spring.profiles: "!C"
not-c: true
---
spring.profiles: "!D"
not-d: true
---
spring.profiles: "!E"
not-e: true

3
spring-boot-project/spring-boot/src/test/resources/enableprofileviaapplicationproperties.yml

@ -1,3 +0,0 @@ @@ -1,3 +0,0 @@
spring:
profiles:
include: a

2
spring-boot-project/spring-boot/src/test/resources/profilenegation-b.yml

@ -1,2 +0,0 @@ @@ -1,2 +0,0 @@
version: NOT A

10
spring-boot-project/spring-boot/src/test/resources/profilenegation-local-active-profiles.yml

@ -1,10 +0,0 @@ @@ -1,10 +0,0 @@
spring:
profiles:
active:
- B
---
spring.profiles: "!A"
version: NOT A

4
spring-boot-project/spring-boot/src/test/resources/profilenegation.yml

@ -1,4 +0,0 @@ @@ -1,4 +0,0 @@
---
spring.profiles: "!A"
version: NOT A

1
spring-boot-project/spring-boot/src/test/resources/specificfile-specificprofile.properties

@ -1 +0,0 @@ @@ -1 +0,0 @@
my.property=fromspecificpropertiesfile

20
spring-boot-project/spring-boot/src/test/resources/testnegatedprofiles.yml

@ -1,20 +0,0 @@ @@ -1,20 +0,0 @@
---
my:
property: fromyamlfile
other: notempty
---
spring:
profiles: dev
my:
property: fromdevprofile
---
spring:
profiles: other
my:
property: fromotherprofile
---
spring:
profiles: "!other"
my:
property: fromnototherprofile
notother: foo

14
spring-boot-project/spring-boot/src/test/resources/testprofileexpression.yml

@ -1,14 +0,0 @@ @@ -1,14 +0,0 @@
---
my:
property: fromyamlfile
---
spring:
profiles: dev & other
my:
property: devandother
---
spring:
profiles: (dev | other) & another
my:
property: devorotherandanother
---

14
spring-boot-project/spring-boot/src/test/resources/testprofilesdocument.yml

@ -1,14 +0,0 @@ @@ -1,14 +0,0 @@
---
my:
property: fromyamlfile
other: notempty
---
spring:
profiles: thedefault
my:
property: fromdefaultprofile
---
spring:
profiles: other
my:
property: fromotherprofile

14
spring-boot-project/spring-boot/src/test/resources/testprofilesempty.yml

@ -1,14 +0,0 @@ @@ -1,14 +0,0 @@
---
my:
property: fromyamlfile
other: notempty
---
spring:
profiles:
my:
property: fromemptyprofile
---
spring:
profiles: other
my:
property: fromotherprofile

11
spring-boot-project/spring-boot/src/test/resources/testsetprofiles.yml

@ -1,11 +0,0 @@ @@ -1,11 +0,0 @@
---
spring:
profiles:
active: dev
my:
property: fromyamlfile
---
spring:
profiles: dev
my:
property: fromdevprofile
Loading…
Cancel
Save