Package org.apache.rave.portal.model

Examples of org.apache.rave.portal.model.Category


    public void updateCategory_valid(){
        Model model = new ExtendedModelMap();
        User user = new User();
        long id = 1L;
        String categoryText = "Social";
        Category category = new Category();
        category.setCreatedUser(user);
        category.setText(categoryText);
        category.setEntityId(id);
        SessionStatus sessionStatus = createMock(SessionStatus.class);
        expect(userService.getAuthenticatedUser()).andReturn(user).once();
        expect(categoryService.get(id)).andReturn(category);
        expect(categoryService.update(id, categoryText, user)).andReturn(category);
        sessionStatus.setComplete();
View Full Code Here


        Model model = new ExtendedModelMap();
        User user = new User();
        long id = 1L;
        String categoryText = "Social";
        String invalidToken = AdminControllerUtil.generateSessionToken();
        Category category = new Category();
        category.setCreatedUser(user);
        category.setText(categoryText);
        category.setEntityId(id);
        SessionStatus sessionStatus = createMock(SessionStatus.class);
        expect(userService.getAuthenticatedUser()).andReturn(user).once();
        expect(categoryService.get(id)).andReturn(category);
        expect(categoryService.update(id, categoryText, user)).andReturn(category);
        sessionStatus.setComplete();
View Full Code Here

        Model model = new ExtendedModelMap();
        User user = new User();

        long id = 1L;
        String categoryText = "";
        Category category = new Category();
        category.setCreatedUser(user);
        category.setText(categoryText);
        category.setEntityId(id);
        SessionStatus sessionStatus = createMock(SessionStatus.class);
        expect(userService.getAuthenticatedUser()).andReturn(user).once();
        replay(userService);
        String view = controller.updateCategory(category, validToken, validToken, model, sessionStatus);
        assertEquals("ViewName match", ViewNames.ADMIN_CATEGORY_DETAIL, view);
View Full Code Here

    public void updateCategory_invalidValidRequest_nullUser(){
        Model model = new ExtendedModelMap();
        long id = 1L;
        User user = new User();
        String categoryText = "Social";
        Category category = new Category();
        category.setCreatedUser(user);
        category.setText(categoryText);
        category.setEntityId(id);
        SessionStatus sessionStatus = createMock(SessionStatus.class);
        expect(userService.getAuthenticatedUser()).andReturn(user).once();
        replay(userService);
        String view = controller.updateCategory(category, validToken, validToken, model, sessionStatus);
        assertEquals("ViewName match", ViewNames.ADMIN_CATEGORY_DETAIL, view);
View Full Code Here

    public void updateCategory_invalidValidRequest_nullWidgetToUpdate(){
        Model model = new ExtendedModelMap();
        User user = new User();
        long id = 1L;
        String categoryText = "Social";
        Category category = new Category();
        category.setCreatedUser(user);
        category.setText(categoryText);
        category.setEntityId(id);
        SessionStatus sessionStatus = createMock(SessionStatus.class);
        expect(userService.getAuthenticatedUser()).andReturn(user).once();
        expect(categoryService.get(id)).andReturn(null).once();
        replay(userService, categoryService);
        String view = controller.updateCategory(category, validToken, validToken, model, sessionStatus);
View Full Code Here

    public void deleteCategory_valid(){
        Model model = new ExtendedModelMap();
        User user = new User();
        long id = 1L;
        String categoryText = "Social";
        Category category = new Category();
        category.setCreatedUser(user);
        category.setText(categoryText);
        category.setEntityId(id);
        SessionStatus sessionStatus = createMock(SessionStatus.class);
        expect(userService.getAuthenticatedUser()).andReturn(user).once();
        expect(categoryService.get(id)).andReturn(category).anyTimes();
        categoryService.delete(category);
        expectLastCall();
View Full Code Here

        Model model = new ExtendedModelMap();
        User user = new User();
        long id = 1L;
        String categoryText = "Social";
        String invalidToken = AdminControllerUtil.generateSessionToken();
        Category category = new Category();
        category.setCreatedUser(user);
        category.setText(categoryText);
        category.setEntityId(id);
        SessionStatus sessionStatus = createMock(SessionStatus.class);
        expect(userService.getAuthenticatedUser()).andReturn(user).once();
        expect(categoryService.get(id)).andReturn(category);
        categoryService.delete(category);
        expectLastCall();
View Full Code Here

        Model model = new ExtendedModelMap();
        User user = new User();

        long id = 1L;
        String categoryText = "";
        Category category = new Category();
        category.setCreatedUser(user);
        category.setText(categoryText);
        category.setEntityId(id);
        SessionStatus sessionStatus = createMock(SessionStatus.class);
        expect(userService.getAuthenticatedUser()).andReturn(user).once();
        replay(userService);
        String view = controller.deleteCategory(category, validToken, validToken, "true", model, sessionStatus);
        assertEquals("ViewName match", ViewNames.ADMIN_CATEGORY_DETAIL, view);
View Full Code Here

    public void deleteCategory_invalidValidRequest_nullUser(){
        Model model = new ExtendedModelMap();
        long id = 1L;
        User user = new User();
        String categoryText = "Social";
        Category category = new Category();
        category.setCreatedUser(user);
        category.setText(categoryText);
        category.setEntityId(id);
        SessionStatus sessionStatus = createMock(SessionStatus.class);
        expect(userService.getAuthenticatedUser()).andReturn(user).once();
        replay(userService);
        String view = controller.deleteCategory(category, validToken, validToken, "true", model, sessionStatus);
        assertEquals("ViewName match", ViewNames.ADMIN_CATEGORY_DETAIL, view);
View Full Code Here

    public void deleteCategory_invalidValidRequest_nullWidgetToDelete(){
        Model model = new ExtendedModelMap();
        User user = new User();
        long id = 1L;
        String categoryText = "Social";
        Category category = new Category();
        category.setCreatedUser(user);
        category.setText(categoryText);
        category.setEntityId(id);
        SessionStatus sessionStatus = createMock(SessionStatus.class);
        expect(userService.getAuthenticatedUser()).andReturn(user).once();
        expect(categoryService.get(id)).andReturn(null).once();
        replay(userService, categoryService);
        String view = controller.deleteCategory(category, validToken, validToken,"true", model, sessionStatus);
View Full Code Here

TOP

Related Classes of org.apache.rave.portal.model.Category

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.