Author: rdonkin
Date: Mon Dec 9 06:11:37 2013
New Revision: 1549476
URL: http://svn.apache.org/r1549476
Log:
Add Test: DefaultsTest
Added:
creadur/rat/branches/gsoc/apache-rat-core/src/test/java/org/apache/rat/DefaultsTest.java
creadur/rat/branches/gsoc/apache-rat-core/src/test/resources/org/
creadur/rat/branches/gsoc/apache-rat-core/src/test/resources/org/apache/
creadur/rat/branches/gsoc/apache-rat-core/src/test/resources/org/apache/rat/
creadur/rat/branches/gsoc/apache-rat-core/src/test/resources/org/apache/rat/plain-rat.xsl
Added:
creadur/rat/branches/gsoc/apache-rat-core/src/test/java/org/apache/rat/DefaultsTest.java
URL:
http://svn.apache.org/viewvc/creadur/rat/branches/gsoc/apache-rat-core/src/test/java/org/apache/rat/DefaultsTest.java?rev=1549476&view=auto
==============================================================================
---
creadur/rat/branches/gsoc/apache-rat-core/src/test/java/org/apache/rat/DefaultsTest.java
(added)
+++
creadur/rat/branches/gsoc/apache-rat-core/src/test/java/org/apache/rat/DefaultsTest.java
Mon Dec 9 06:11:37 2013
@@ -0,0 +1,38 @@
+/*
+ * 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.rat;
+
+import static org.junit.Assert.assertNotNull;
+
+import org.junit.Test;
+
+/**
+ * The Class DefaultsTest.
+ */
+public class DefaultsTest {
+
+ /**
+ * Test get default style sheet.
+ */
+ @Test
+ public void testGetDefaultStyleSheet() {
+ Defaults defaults = new Defaults();
+ assertNotNull("Not to be null",
defaults.getDefaultStyleSheet());
+ }
+}
Added:
creadur/rat/branches/gsoc/apache-rat-core/src/test/resources/org/apache/rat/plain-rat.xsl
URL:
http://svn.apache.org/viewvc/creadur/rat/branches/gsoc/apache-rat-core/src/test/resources/org/apache/rat/plain-rat.xsl?rev=1549476&view=auto
==============================================================================
---
creadur/rat/branches/gsoc/apache-rat-core/src/test/resources/org/apache/rat/plain-rat.xsl
(added)
+++
creadur/rat/branches/gsoc/apache-rat-core/src/test/resources/org/apache/rat/plain-rat.xsl
Mon Dec 9 06:11:37 2013
@@ -0,0 +1,91 @@
+<?xml version='1.0' ?>
+<!--
+ 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. *
+-->
+<xsl:stylesheet version="1.0"
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+<xsl:output method='text'/>
+<xsl:template match='/'>
+*****************************************************
+Summary
+-------
+Generated at: <xsl:value-of select='rat-report/@timestamp'/>
+Notes: <xsl:value-of
select='count(descendant::type[attribute::name="notice"])'/>
+Binaries: <xsl:value-of
select='count(descendant::type[attribute::name="binary"])'/>
+Archives: <xsl:value-of
select='count(descendant::type[attribute::name="archive"])'/>
+Standards: <xsl:value-of
select='count(descendant::type[attribute::name="standard"])'/>
+
+Apache Licensed: <xsl:value-of
select='count(descendant::header-type[attribute::name="AL "])'/>
+Generated Documents: <xsl:value-of
select='count(descendant::header-type[attribute::name="GEN "])'/>
+
+JavaDocs are generated and so license header is optional
+Generated files do not required license headers
+
+<xsl:value-of
select='count(descendant::header-type[attribute::name="?????"])'/> Unknown
Licenses
+
+*******************************
+
+Unapproved licenses:
+
+<xsl:for-each select='descendant::resource[license-approval/@name="false"]'>
+ <xsl:text> </xsl:text>
+ <xsl:value-of select='@name'/>
+ <xsl:text>
+</xsl:text>
+</xsl:for-each>
+*******************************
+
+Archives:
+<xsl:for-each select='descendant::resource[type/@name="archive"]'>
+ + <xsl:value-of select='@name'/>
+ <xsl:text>
+ </xsl:text>
+ </xsl:for-each>
+*****************************************************
+ Files with Apache License headers will be marked AL
+ Binary files (which do not require AL headers) will be marked B
+ Compressed archives will be marked A
+ Notices, licenses etc will be marked N
+ <xsl:for-each select='descendant::resource'>
+ <xsl:choose>
+ <xsl:when test='license-approval/@name="false"'>!</xsl:when>
+ <xsl:otherwise><xsl:text> </xsl:text></xsl:otherwise>
+ </xsl:choose>
+ <xsl:choose>
+ <xsl:when test='type/@name="notice"'>N </xsl:when>
+ <xsl:when test='type/@name="archive"'>A </xsl:when>
+ <xsl:when test='type/@name="binary"'>B </xsl:when>
+ <xsl:when test='type/@name="standard"'><xsl:value-of
select='header-type/@name'/></xsl:when>
+ <xsl:otherwise>!!!!!</xsl:otherwise>
+ </xsl:choose>
+ <xsl:text> </xsl:text>
+ <xsl:value-of select='@name'/>
+ <xsl:text>
+ </xsl:text>
+ </xsl:for-each>
+*****************************************************
+ Printing headers for files without AL header...
+
+ <xsl:for-each select='descendant::resource[header-type/@name="?????"]'>
+=======================================================================
+==<xsl:value-of select='@name'/>
+=======================================================================
+<xsl:value-of select='header-sample'/>
+</xsl:for-each>
+</xsl:template>
+</xsl:stylesheet>