blob: 08874dc2df94de95917d39b77163ba9ee196d545 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.syncope.fit.core;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.junit.jupiter.api.Assertions.fail;
import java.io.IOException;
import java.io.InputStream;
import java.nio.charset.StandardCharsets;
import java.util.List;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;
import org.apache.commons.io.IOUtils;
import org.apache.syncope.common.lib.SyncopeClientException;
import org.apache.syncope.common.lib.to.ReportTemplateTO;
import org.apache.syncope.common.lib.types.ClientExceptionType;
import org.apache.syncope.common.lib.types.ReportExecExportFormat;
import org.apache.syncope.common.lib.types.ReportTemplateFormat;
import org.apache.syncope.fit.AbstractITCase;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
public class ReportTemplateITCase extends AbstractITCase {
@Test
public void read() {
ReportTemplateTO reportTemplateTO = reportTemplateService.read("sample");
assertNotNull(reportTemplateTO);
}
@Test
public void list() {
List<ReportTemplateTO> reportTemplateTOs = reportTemplateService.list();
assertNotNull(reportTemplateTOs);
assertFalse(reportTemplateTOs.isEmpty());
reportTemplateTOs.forEach(Assertions::assertNotNull);
}
@Test
public void crud() throws IOException {
final String key = getUUIDString();
// 1. create (empty) report template
ReportTemplateTO reportTemplateTO = new ReportTemplateTO();
reportTemplateTO.setKey(key);
Response response = reportTemplateService.create(reportTemplateTO);
assertEquals(201, response.getStatus());
// 2. attempt to read HTML and CSV -> fail
try {
reportTemplateService.getFormat(key, ReportTemplateFormat.HTML);
fail("This should not happen");
} catch (SyncopeClientException e) {
assertEquals(ClientExceptionType.NotFound, e.getType());
}
try {
reportTemplateService.getFormat(key, ReportTemplateFormat.CSV);
fail("This should not happen");
} catch (SyncopeClientException e) {
assertEquals(ClientExceptionType.NotFound, e.getType());
}
// 3. set CSV
String csvTemplate =
"<xsl:stylesheet xmlns:xsl='http://www.w3.org/1999/XSL/Transform' version='1.0'></xsl:stylesheet>";
reportTemplateService.setFormat(
key, ReportTemplateFormat.CSV, IOUtils.toInputStream(csvTemplate, StandardCharsets.UTF_8));
response = reportTemplateService.getFormat(key, ReportTemplateFormat.CSV);
assertEquals(200, response.getStatus());
assertTrue(response.getMediaType().toString().startsWith(MediaType.APPLICATION_XML));
assertTrue(response.getEntity() instanceof InputStream);
assertEquals(
csvTemplate,
IOUtils.toString((InputStream) response.getEntity(), StandardCharsets.UTF_8));
// 3. set HTML
String htmlTemplate =
"<xsl:stylesheet xmlns:xsl='http://www.w3.org/1999/XSL/Transform' version='1.0'></xsl:stylesheet>";
reportTemplateService.setFormat(
key, ReportTemplateFormat.HTML, IOUtils.toInputStream(htmlTemplate, StandardCharsets.UTF_8));
response = reportTemplateService.getFormat(key, ReportTemplateFormat.HTML);
assertEquals(200, response.getStatus());
assertTrue(response.getMediaType().toString().startsWith(MediaType.APPLICATION_XML));
assertTrue(response.getEntity() instanceof InputStream);
assertEquals(
htmlTemplate,
IOUtils.toString((InputStream) response.getEntity(), StandardCharsets.UTF_8));
// 4. remove HTML
reportTemplateService.removeFormat(key, ReportTemplateFormat.HTML);
try {
reportTemplateService.getFormat(key, ReportTemplateFormat.HTML);
fail("This should not happen");
} catch (SyncopeClientException e) {
assertEquals(ClientExceptionType.NotFound, e.getType());
}
response = reportTemplateService.getFormat(key, ReportTemplateFormat.CSV);
assertEquals(200, response.getStatus());
assertTrue(response.getMediaType().toString().startsWith(MediaType.APPLICATION_XML));
assertTrue(response.getEntity() instanceof InputStream);
assertEquals(
csvTemplate,
IOUtils.toString((InputStream) response.getEntity(), StandardCharsets.UTF_8));
// 5. remove report template
reportTemplateService.delete(key);
try {
reportTemplateService.read(key);
fail("This should not happen");
} catch (SyncopeClientException e) {
assertEquals(ClientExceptionType.NotFound, e.getType());
}
try {
reportTemplateService.getFormat(key, ReportTemplateFormat.HTML);
fail("This should not happen");
} catch (SyncopeClientException e) {
assertEquals(ClientExceptionType.NotFound, e.getType());
}
try {
reportTemplateService.getFormat(key, ReportTemplateFormat.CSV);
fail("This should not happen");
} catch (SyncopeClientException e) {
assertEquals(ClientExceptionType.NotFound, e.getType());
}
}
@Test
public void safeTemplate() throws IOException {
Response response = reportTemplateService.getFormat("sample", ReportTemplateFormat.HTML);
String before = IOUtils.toString((InputStream) response.getEntity(), StandardCharsets.UTF_8);
assertNotNull(before);
String execKey = ReportITCase.execReport("0062ea9c-924d-4ecf-9961-4492a8cc6d1b");
assertNotNull(execKey);
response = reportService.exportExecutionResult(execKey, ReportExecExportFormat.HTML);
String result = IOUtils.toString((InputStream) response.getEntity(), StandardCharsets.UTF_8);
assertNotNull(result);
assertTrue(result.startsWith("<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
+ "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" "
+ "\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">"));
String malicious = "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n"
+ "<!DOCTYPE xsl:stylesheet "
+ "[<!ENTITY file SYSTEM \"webapps/syncope/WEB-INF/classes/security.properties\">]>\n"
+ "<xsl:stylesheet version=\"1.0\" xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\">\n"
+ " <xsl:template match=\"/\">&file;</xsl:template>\n"
+ "</xsl:stylesheet>";
try {
reportTemplateService.setFormat("sample", ReportTemplateFormat.HTML,
IOUtils.toInputStream(malicious, StandardCharsets.UTF_8));
response = reportService.exportExecutionResult(execKey, ReportExecExportFormat.HTML);
result = IOUtils.toString((InputStream) response.getEntity(), StandardCharsets.UTF_8);
assertNotNull(result);
assertTrue(result.isEmpty());
} finally {
reportTemplateService.setFormat("sample", ReportTemplateFormat.HTML,
IOUtils.toInputStream(before, StandardCharsets.UTF_8));
}
}
@Test
public void issueSYNCOPE866() {
ReportTemplateTO reportTemplateTO = new ReportTemplateTO();
reportTemplateTO.setKey("empty");
try {
reportTemplateService.create(reportTemplateTO);
fail("This should not happen");
} catch (SyncopeClientException e) {
assertEquals(ClientExceptionType.EntityExists, e.getType());
}
}
}