Search in sources :

Example 21 with Binder

use of cn.taketoday.context.properties.bind.Binder in project today-infrastructure by TAKETODAY.

the class ProfilesTests method iteratorWithProfileGroups.

@Test
void iteratorWithProfileGroups() {
    MockEnvironment environment = new MockEnvironment();
    environment.setProperty("context.profiles.active", "a,b,c");
    environment.setProperty("context.profiles.group.a", "e,f");
    environment.setProperty("context.profiles.group.e", "x,y");
    Binder binder = Binder.get(environment);
    Profiles profiles = new Profiles(environment, binder, null);
    assertThat(profiles).containsExactly("a", "e", "x", "y", "f", "b", "c");
}
Also used : Binder(cn.taketoday.context.properties.bind.Binder) MockEnvironment(cn.taketoday.mock.env.MockEnvironment) Test(org.junit.jupiter.api.Test)

Example 22 with Binder

use of cn.taketoday.context.properties.bind.Binder in project today-infrastructure by TAKETODAY.

the class ProfilesTests method iteratorIteratesAllActiveProfiles.

@Test
void iteratorIteratesAllActiveProfiles() {
    MockEnvironment environment = new MockEnvironment();
    environment.setActiveProfiles("a", "b", "c");
    environment.setDefaultProfiles("d", "e", "f");
    Binder binder = Binder.get(environment);
    Profiles profiles1 = new Profiles(environment, binder, null);
    Profiles profiles = profiles1;
    assertThat(profiles).containsExactly("a", "b", "c");
}
Also used : Binder(cn.taketoday.context.properties.bind.Binder) MockEnvironment(cn.taketoday.mock.env.MockEnvironment) Test(org.junit.jupiter.api.Test)

Example 23 with Binder

use of cn.taketoday.context.properties.bind.Binder in project today-infrastructure by TAKETODAY.

the class ProfilesTests method getActiveWhenNoEnvironmentProfilesAndEnvironmentPropertyInBindNotation.

@Test
void getActiveWhenNoEnvironmentProfilesAndEnvironmentPropertyInBindNotation() {
    MockEnvironment environment = new MockEnvironment();
    environment.setProperty("context.profiles.active[0]", "a");
    environment.setProperty("context.profiles.active[1]", "b");
    environment.setProperty("context.profiles.active[2]", "c");
    Binder binder = Binder.get(environment);
    Profiles profiles = new Profiles(environment, binder, null);
    assertThat(profiles.getActive()).containsExactly("a", "b", "c");
}
Also used : Binder(cn.taketoday.context.properties.bind.Binder) MockEnvironment(cn.taketoday.mock.env.MockEnvironment) Test(org.junit.jupiter.api.Test)

Example 24 with Binder

use of cn.taketoday.context.properties.bind.Binder in project today-infrastructure by TAKETODAY.

the class ProfilesTests method isAcceptedWithGroupsReturnsTrue.

@Test
void isAcceptedWithGroupsReturnsTrue() {
    MockEnvironment environment = new MockEnvironment();
    environment.setProperty("context.profiles.active", "a,b,c");
    environment.setProperty("context.profiles.group.a", "e,f");
    environment.setProperty("context.profiles.group.e", "x,y");
    environment.setDefaultProfiles("g", "h", "i");
    Binder binder = Binder.get(environment);
    Profiles profiles = new Profiles(environment, binder, null);
    assertThat(profiles.isAccepted("a")).isTrue();
    assertThat(profiles.isAccepted("e")).isTrue();
    assertThat(profiles.isAccepted("g")).isFalse();
}
Also used : Binder(cn.taketoday.context.properties.bind.Binder) MockEnvironment(cn.taketoday.mock.env.MockEnvironment) Test(org.junit.jupiter.api.Test)

Example 25 with Binder

use of cn.taketoday.context.properties.bind.Binder in project today-infrastructure by TAKETODAY.

the class ProfilesTests method getDefaultWithProfileGroups.

@Test
void getDefaultWithProfileGroups() {
    MockEnvironment environment = new MockEnvironment();
    environment.setProperty("context.profiles.default", "a,b,c");
    environment.setProperty("context.profiles.group.a", "d,e");
    Binder binder = Binder.get(environment);
    Profiles profiles = new Profiles(environment, binder, null);
    assertThat(profiles.getDefault()).containsExactly("a", "d", "e", "b", "c");
}
Also used : Binder(cn.taketoday.context.properties.bind.Binder) MockEnvironment(cn.taketoday.mock.env.MockEnvironment) Test(org.junit.jupiter.api.Test)

Aggregations

Binder (cn.taketoday.context.properties.bind.Binder)169 Test (org.junit.jupiter.api.Test)148 MockEnvironment (cn.taketoday.mock.env.MockEnvironment)86 MapConfigurationPropertySource (cn.taketoday.context.properties.source.MapConfigurationPropertySource)40 MockConfigurationPropertySource (cn.taketoday.context.properties.source.MockConfigurationPropertySource)28 MockPropertySource (cn.taketoday.mock.env.MockPropertySource)16 ConfigurationPropertySource (cn.taketoday.context.properties.source.ConfigurationPropertySource)14 Environment (cn.taketoday.core.env.Environment)14 ArrayList (java.util.ArrayList)10 BeforeEach (org.junit.jupiter.api.BeforeEach)8 BindHandler (cn.taketoday.context.properties.bind.BindHandler)6 Bindable (cn.taketoday.context.properties.bind.Bindable)6 ConfigurationPropertyName (cn.taketoday.context.properties.source.ConfigurationPropertyName)6 StandardEnvironment (cn.taketoday.core.env.StandardEnvironment)6 BindContext (cn.taketoday.context.properties.bind.BindContext)4 List (java.util.List)4 ConfigurableApplicationContext (cn.taketoday.context.ConfigurableApplicationContext)2 BindException (cn.taketoday.context.properties.bind.BindException)2 PlaceholdersResolver (cn.taketoday.context.properties.bind.PlaceholdersResolver)2 ConfigurationProperty (cn.taketoday.context.properties.source.ConfigurationProperty)2