Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Check secure feature processing enabled #204

Merged
merged 2 commits into from
Apr 10, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions jvm/src/test/scala/scala/xml/XMLTest.scala
Original file line number Diff line number Diff line change
Expand Up @@ -532,6 +532,54 @@ class XMLTestJVM {
}
}

/** Default SAXParserFactory */
val defaultParserFactory = javax.xml.parsers.SAXParserFactory.newInstance

@throws(classOf[org.xml.sax.SAXNotRecognizedException])
def issue17UnrecognizedFeature: Unit = {
assertTrue(defaultParserFactory.getFeature("foobar"))
}

@UnitTest
def issue17SecureProcessing: Unit = {
assertTrue(defaultParserFactory.getFeature("http://javax.xml.XMLConstants/feature/secure-processing"))
}

@UnitTest
def issue17ExternalGeneralEntities: Unit = {
assertTrue(defaultParserFactory.getFeature("http://xml.org/sax/features/external-general-entities"))
}

@UnitTest
def issue17LoadExternalDtd: Unit = {
assertTrue(defaultParserFactory.getFeature("http://apache.org/xml/features/nonvalidating/load-external-dtd"))
}

@UnitTest
def issue17DisallowDoctypeDecl: Unit = {
assertFalse(defaultParserFactory.getFeature("http://apache.org/xml/features/disallow-doctype-decl"))
}

@UnitTest
def issue17ExternalParameterEntities: Unit = {
assertTrue(defaultParserFactory.getFeature("http://xml.org/sax/features/external-parameter-entities"))
}

@UnitTest
def issue17ResolveDtdUris: Unit = {
assertTrue(defaultParserFactory.getFeature("http://xml.org/sax/features/resolve-dtd-uris"))
}

@UnitTest
def issue17isXIncludeAware: Unit = {
assertFalse(XML.parser.isXIncludeAware)
}

@UnitTest
def issue17isNamespaceAware: Unit = {
assertFalse(XML.parser.isNamespaceAware)
}

@UnitTest
def issue28: Unit = {
val x = <x:foo xmlns:x="gaga"/>
Expand Down