org.bonitasoft.web.designer.controller.PreviewControllerTest.java Source code

Java tutorial

Introduction

Here is the source code for org.bonitasoft.web.designer.controller.PreviewControllerTest.java

Source

/**
 * Copyright (C) 2015 Bonitasoft S.A.
 * Bonitasoft, 32 rue Gustave Eiffel - 38000 Grenoble
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 2.0 of the License, or
 * (at your option) any later version.
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */
package org.bonitasoft.web.designer.controller;

import static java.nio.file.Files.readAllBytes;
import static javax.servlet.http.HttpServletResponse.SC_TEMPORARY_REDIRECT;
import static junit.framework.Assert.assertEquals;
import static org.mockito.Matchers.any;
import static org.mockito.Matchers.eq;
import static org.mockito.Mockito.when;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.*;
import static org.springframework.test.web.servlet.setup.MockMvcBuilders.standaloneSetup;

import java.nio.file.Path;
import java.nio.file.Paths;
import javax.servlet.http.HttpServletRequest;

import org.bonitasoft.web.designer.controller.preview.Previewer;
import org.bonitasoft.web.designer.model.asset.AssetType;
import org.bonitasoft.web.designer.model.page.Page;
import org.bonitasoft.web.designer.model.widget.Widget;
import org.bonitasoft.web.designer.repository.AssetRepository;
import org.bonitasoft.web.designer.repository.PageRepository;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mock;
import org.mockito.runners.MockitoJUnitRunner;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.test.web.servlet.MockMvc;
import org.springframework.test.web.servlet.MvcResult;
import org.springframework.test.web.servlet.ResultMatcher;

@RunWith(MockitoJUnitRunner.class)
public class PreviewControllerTest {

    private MockMvc mockMvc;

    @Mock
    private Previewer previewer;

    @Mock
    private PageRepository pageRepository;

    @Mock
    private AssetRepository<Page> pageAssetRepository;

    @Mock
    private AssetRepository<Widget> widgetAssetRepository;

    private Path widgetRepositoryPath = Paths.get("target/test-classes/workspace/widgets");

    @Before
    public void beforeEach() throws Exception {
        mockMvc = standaloneSetup(new PreviewController(pageRepository, previewer, pageAssetRepository,
                widgetAssetRepository, new RequestMappingUtils())).build();
    }

    @Test
    public void should_call_the_previewer() throws Exception {
        ResponseEntity<String> response = new ResponseEntity<>("Everything ok", HttpStatus.OK);
        when(previewer.render(eq("my-page"), eq(pageRepository), any(HttpServletRequest.class)))
                .thenReturn(response);

        mockMvc.perform(get("/preview/page/my-page")).andExpect(status().isOk())
                .andExpect(content().string("Everything ok")).andExpect(content().encoding("UTF-8"));

    }

    @Test
    public void should_load_page_asset_on_disk() throws Exception {
        Path expectedFile = widgetRepositoryPath.resolve("pbLabel/pbLabel.js");
        when(pageAssetRepository.findAssetPath("page-id", "asset.js", AssetType.JAVASCRIPT))
                .thenReturn(expectedFile);

        mockMvc.perform(get("/preview/page/page-id/assets/js/asset.js")).andExpect(status().isOk())
                .andExpect(content().bytes(readAllBytes(expectedFile)))
                .andExpect(header().string("Content-Length", String.valueOf(expectedFile.toFile().length())))
                .andExpect(header().string("Content-Disposition", "inline; filename=\"pbLabel.js\""))
                .andExpect(content().encoding("UTF-8"));
    }

    @Test
    public void should_respond_404_when_page_asset_is_not_found() throws Exception {
        when(pageAssetRepository.findAssetPath("page-id", "asset.js", AssetType.JAVASCRIPT)).thenReturn(null);

        mockMvc.perform(get("/preview/page/page-id/assets/js/asset.js")).andExpect(status().isNotFound());
    }

    @Test
    public void should_load_widget_asset_on_disk() throws Exception {
        Path expectedFile = widgetRepositoryPath.resolve("pbLabel/pbLabel.js");
        when(widgetAssetRepository.findAssetPath("widget-id", "asset.js", AssetType.JAVASCRIPT))
                .thenReturn(expectedFile);

        mockMvc.perform(get("/preview/widget/widget-id/assets/js/asset.js")).andExpect(status().isOk())
                .andExpect(content().bytes(readAllBytes(expectedFile)))
                .andExpect(header().string("Content-Length", String.valueOf(expectedFile.toFile().length())))
                .andExpect(header().string("Content-Disposition", "inline; filename=\"pbLabel.js\""))
                .andExpect(content().encoding("UTF-8"));
    }

    @Test
    public void should_respond_404_when_widget_asset_is_not_found() throws Exception {
        when(widgetAssetRepository.findAssetPath("widget-id", "asset.js", AssetType.JAVASCRIPT)).thenReturn(null);

        mockMvc.perform(get("/preview/widget/widget-id/assets/widget-id/js/asset.js"))
                .andExpect(status().isNotFound());
    }

    @Test
    public void should_load_widget_asset_included_in_page_on_disk() throws Exception {
        Path expectedFile = widgetRepositoryPath.resolve("pbLabel/pbLabel.js");
        when(widgetAssetRepository.findAssetPath("widget-id", "asset.js", AssetType.JAVASCRIPT))
                .thenReturn(expectedFile);

        mockMvc.perform(get("/preview/page/page-id/widgets/widget-id/assets/js/asset.js"))
                .andExpect(status().isOk()).andExpect(content().bytes(readAllBytes(expectedFile)))
                .andExpect(header().string("Content-Length", String.valueOf(expectedFile.toFile().length())))
                .andExpect(header().string("Content-Disposition", "inline; filename=\"pbLabel.js\""))
                .andExpect(content().encoding("UTF-8"));
    }

    @Test
    public void should_respond_404_when_widget_asset_included_in_page_is_not_found() throws Exception {
        when(widgetAssetRepository.findAssetPath("widget-id", "asset.js", AssetType.JAVASCRIPT)).thenReturn(null);

        mockMvc.perform(get("/preview/page/page-id/widgets/widget-id/assets/js/asset.js"))
                .andExpect(status().isNotFound());
    }

    @Test
    public void should_return_a_fake_css_file_for_living_application_theme() throws Exception {
        String expectedContent = "/**" + System.lineSeparator() + "* Living application theme"
                + System.lineSeparator() + "*/";

        mockMvc.perform(get("/preview/page/theme/theme.css")).andExpect(status().isOk())
                .andExpect(content().string(expectedContent))
                .andExpect(header().string("Content-Disposition", "inline; filename=\"theme.css\""))
                .andExpect(content().encoding("UTF-8"));

    }

    @Test
    public void should_redirect_API_calls_to_the_real_API() throws Exception {
        mockMvc.perform(get("/preview/page/API/portal/page")).andExpect(redirectedUrl("/bonita/API/portal/page"));
    }

    @Test
    public void should_redirect_API_calls_to_the_real_API_and_add_the_query_string() throws Exception {
        mockMvc.perform(get("/preview/page/API/portal/page?p=0&c=1"))
                .andExpect(redirectedUrl("/bonita/API/portal/page?p=0&c=1"));
    }

    @Test
    public void should_temporarily_redirect_ADI_post_to_the_real_API() throws Exception {
        mockMvc.perform(post("/preview/page/API/portal/page?id=123")).andExpect(new ResultMatcher() {
            @Override
            public void match(MvcResult result) throws Exception {
                assertEquals(result.getResponse().getStatus(), SC_TEMPORARY_REDIRECT);
                assertEquals(result.getResponse().getRedirectedUrl(), "/bonita/API/portal/page?id=123");
            }
        });
    }
}