Clover icon

Magnolia REST Integration 2.1.3

  1. Project Clover database Fri Oct 25 2019 12:33:17 CEST
  2. Package info.magnolia.rest

File RepositoryExceptionMapperTest.java

 

Code metrics

0
23
5
1
112
48
5
0.22
4.6
5
1

Classes

Class Line # Actions
RepositoryExceptionMapperTest 47 23 0% 5 0
1.0100%
 

Contributing tests

This file is covered by 4 tests. .

Source view

1    /**
2    * This file Copyright (c) 2017-2018 Magnolia International
3    * Ltd. (http://www.magnolia-cms.com). All rights reserved.
4    *
5    *
6    * This file is dual-licensed under both the Magnolia
7    * Network Agreement and the GNU General Public License.
8    * You may elect to use one or the other of these licenses.
9    *
10    * This file is distributed in the hope that it will be
11    * useful, but AS-IS and WITHOUT ANY WARRANTY; without even the
12    * implied warranty of MERCHANTABILITY or FITNESS FOR A
13    * PARTICULAR PURPOSE, TITLE, or NONINFRINGEMENT.
14    * Redistribution, except as permitted by whichever of the GPL
15    * or MNA you select, is prohibited.
16    *
17    * 1. For the GPL license (GPL), you can redistribute and/or
18    * modify this file under the terms of the GNU General
19    * Public License, Version 3, as published by the Free Software
20    * Foundation. You should have received a copy of the GNU
21    * General Public License, Version 3 along with this program;
22    * if not, write to the Free Software Foundation, Inc., 51
23    * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
24    *
25    * 2. For the Magnolia Network Agreement (MNA), this file
26    * and the accompanying materials are made available under the
27    * terms of the MNA which accompanies this distribution, and
28    * is available at http://www.magnolia-cms.com/mna.html
29    *
30    * Any modifications to this file must keep this entire header
31    * intact.
32    *
33    */
34    package info.magnolia.rest;
35   
36    import static javax.ws.rs.core.Response.Status.*;
37    import static org.junit.Assert.*;
38   
39    import javax.jcr.AccessDeniedException;
40    import javax.jcr.PathNotFoundException;
41    import javax.jcr.RepositoryException;
42    import javax.jcr.query.InvalidQueryException;
43    import javax.ws.rs.core.Response;
44   
45    import org.junit.Test;
46   
 
47    public class RepositoryExceptionMapperTest {
48   
49    private final RepositoryExceptionMapper repositoryExceptionMapper = new RepositoryExceptionMapper();
50   
 
51  1 toggle @Test
52    public void accessDeniedException() {
53    // GIVEN
54  1 String message = "Access denied";
55  1 RepositoryException exception = new AccessDeniedException(message);
56   
57    // WHEN
58  1 Response response = repositoryExceptionMapper.toResponse(exception);
59   
60    // THEN
61  1 assertEquals(Response.Status.FORBIDDEN.getStatusCode(), response.getStatus());
62    }
63   
 
64  1 toggle @Test
65    public void pathNotFoundException() {
66    // GIVEN
67  1 String errorMessage = "Path not found";
68  1 RepositoryException exception = new PathNotFoundException(errorMessage);
69   
70    // WHEN
71  1 Response response = repositoryExceptionMapper.toResponse(exception);
72   
73    // THEN
74  1 assertErrorResponse(response, NOT_FOUND, errorMessage, "pathNotFound");
75    }
76   
 
77  3 toggle private void assertErrorResponse(Response response, Response.Status expectedStatusCode, String expectedErrorMessage, String expectedErrorCode) {
78  3 assertEquals(expectedStatusCode, response.getStatusInfo());
79  3 assertNotNull(response.getEntity());
80  3 assertTrue(response.getEntity() instanceof RestError);
81  3 RestError restError = (RestError) response.getEntity();
82  3 assertNotNull(restError.getErrorContainer().getCode());
83  3 assertEquals(expectedErrorCode, restError.getErrorContainer().getCode());
84  3 assertEquals(expectedErrorMessage, restError.getErrorContainer().getMessage());
85    }
86   
 
87  1 toggle @Test
88    public void invalidQueryException() {
89    // GIVEN
90  1 String errorMessage = "SELECT * FROM [nt:base]";
91  1 RepositoryException exception = new InvalidQueryException(errorMessage);
92   
93    // WHEN
94  1 Response response = repositoryExceptionMapper.toResponse(exception);
95   
96    // THEN
97  1 assertErrorResponse(response, BAD_REQUEST, "Invalid query", "invalidQuery");
98    }
99   
 
100  1 toggle @Test
101    public void unknownRepositoryException() {
102    // GIVEN
103  1 String errorMessage = "Unknown";
104  1 RepositoryException exception = new RepositoryException(errorMessage);
105   
106    // WHEN
107  1 Response response = repositoryExceptionMapper.toResponse(exception);
108   
109    // THEN
110  1 assertErrorResponse(response, INTERNAL_SERVER_ERROR, errorMessage, "unknown");
111    }
112    }