-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fa93a4e
commit be5e76b
Showing
2 changed files
with
55 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
batik-test-old/src/test/java/org/apache/batik/svg/ValidateDTDTestCase.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
/* | ||
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.batik.svg; | ||
|
||
import java.io.ByteArrayInputStream; | ||
import java.io.ByteArrayOutputStream; | ||
import org.apache.batik.transcoder.TranscoderInput; | ||
import org.apache.batik.transcoder.TranscoderOutput; | ||
import org.apache.batik.transcoder.image.ImageTranscoder; | ||
import org.apache.batik.transcoder.image.PNGTranscoder; | ||
import org.junit.Assert; | ||
import org.junit.Test; | ||
|
||
public class ValidateDTDTestCase { | ||
@Test | ||
public void testValidateDTD() throws Exception { | ||
String svgContent = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n" + | ||
"<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n" + | ||
"<svg width=\"100\" height=\"100\" xmlns=\"http://www.w3.org/2000/svg\">\n" + | ||
" <rect fill=\"#ff0000\" x=\"0\" y=\"0\" width=\"50\" height=\"50\"/>\n" + | ||
"</svg>"; | ||
PNGTranscoder transcoder = new PNGTranscoder(); | ||
transcoder.addTranscodingHint(ImageTranscoder.KEY_XML_PARSER_VALIDATING, Boolean.TRUE); | ||
TranscoderInput input = new TranscoderInput(new ByteArrayInputStream(svgContent.getBytes())); | ||
ByteArrayOutputStream ostream = new ByteArrayOutputStream(); | ||
TranscoderOutput output = new TranscoderOutput(ostream); | ||
transcoder.transcode(input, output); | ||
Assert.assertNotNull(ostream.toByteArray()); | ||
} | ||
} |
be5e76b
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See #40