use of coffee.synyx.autoconfigure.security.service.CoffeeNetUserDetails in project coffeenet-starter by coffeenet.
the class CoffeeNetWebExtractorTest method extractApps.
@Test
public void extractApps() {
Map<String, List<CoffeeNetApp>> apps = new HashMap<>();
CoffeeNetApp coffeeNetApp = new CoffeeNetApp("Coffee App", "coffeeapp.coffeenet", emptySet());
apps.put("cna1", singletonList(coffeeNetApp));
CoffeeNetApp profileApp = new CoffeeNetApp("Profile", "profile.coffeenet", emptySet());
apps.put("profile", singletonList(profileApp));
sut.registerService(APP_SERVICE, coffeeNetAppServiceMock);
when(coffeeNetAppServiceMock.getApps(any())).thenReturn(apps);
// user
sut.registerService(USER_SERVICE, coffeeNetCurrentUserServiceMock);
List<GrantedAuthority> authorities = singletonList(new SimpleGrantedAuthority("ROLE_COFFEENET-ADMIN"));
Optional<CoffeeNetUserDetails> user = of(new HumanCoffeeNetUser("username", "email", authorities));
when(coffeeNetCurrentUserServiceMock.get()).thenReturn(user);
Optional<Map<String, List<CoffeeNetApp>>> extractedApps = sut.extractApps();
Map<String, List<CoffeeNetApp>> coffeeNetApps = extractedApps.get();
assertThat(coffeeNetApps).hasSize(2);
assertThat(coffeeNetApps.get("apps")).hasSize(1);
assertThat(coffeeNetApps.get("apps").get(0)).isSameAs(coffeeNetApp);
assertThat(coffeeNetApps.get("profile")).hasSize(1);
assertThat(coffeeNetApps.get("profile").get(0)).isSameAs(profileApp);
}
use of coffee.synyx.autoconfigure.security.service.CoffeeNetUserDetails in project coffeenet-starter by coffeenet.
the class CoffeeNetWebExtractorTest method extractAppsNoProfile.
@Test
public void extractAppsNoProfile() {
Map<String, List<CoffeeNetApp>> apps = new HashMap<>();
CoffeeNetApp coffeeNetApp = new CoffeeNetApp("Coffee App", "coffeeapp.coffeenet", emptySet());
apps.put("apps", singletonList(coffeeNetApp));
sut.registerService(APP_SERVICE, coffeeNetAppServiceMock);
when(coffeeNetAppServiceMock.getApps(any())).thenReturn(apps);
// user
sut.registerService(USER_SERVICE, coffeeNetCurrentUserServiceMock);
List<GrantedAuthority> authorities = singletonList(new SimpleGrantedAuthority("ROLE_COFFEENET-ADMIN"));
Optional<CoffeeNetUserDetails> user = of(new HumanCoffeeNetUser("username", "email", authorities));
when(coffeeNetCurrentUserServiceMock.get()).thenReturn(user);
Optional<Map<String, List<CoffeeNetApp>>> extractedApps = sut.extractApps();
Map<String, List<CoffeeNetApp>> coffeeNetApps = extractedApps.get();
assertThat(coffeeNetApps).hasSize(1);
assertThat(coffeeNetApps.get("apps")).hasSize(1);
assertThat(coffeeNetApps.get("apps").get(0)).isSameAs(coffeeNetApp);
assertThat(coffeeNetApps.get("profile")).isNull();
}
use of coffee.synyx.autoconfigure.security.service.CoffeeNetUserDetails in project coffeenet-starter by coffeenet.
the class CoffeeNetWebExtractorTest method extractUser.
@Test
public void extractUser() {
sut.registerService(USER_SERVICE, coffeeNetCurrentUserServiceMock);
Optional<CoffeeNetUserDetails> user = of(new HumanCoffeeNetUser("username", "email", emptyList()));
when(coffeeNetCurrentUserServiceMock.get()).thenReturn(user);
Optional<CoffeeNetWebUser> coffeeNetWebUser = sut.extractUser();
assertThat(coffeeNetWebUser.get().getEmail()).isSameAs("email");
assertThat(coffeeNetWebUser.get().getUsername()).isSameAs("username");
}
Aggregations