@Test
 public void isNotSeller() throws RSSException {
   this.mockUserRoles("provider", "other");
   assertFalse(userManager.isSeller());
 }
 @Test
 public void isSeller() throws RSSException {
   this.mockUserRoles("aggregator", "seller");
   assertTrue(userManager.isSeller());
 }