Author: trong.tran
Date: 2010-02-02 23:35:37 -0500 (Tue, 02 Feb 2010)
New Revision: 1504
Added:
portal/branches/3.0.0-Beta05-CP/component/scripting/src/test/java/org/exoplatform/groovyscript/TestGroovyTemplateEngine.java
Modified:
portal/branches/3.0.0-Beta05-CP/component/scripting/src/main/java/org/exoplatform/groovyscript/GroovyTemplate.java
Log:
GTNPORTAL-553 Correct the name of template file if having "-" sign included
Modified:
portal/branches/3.0.0-Beta05-CP/component/scripting/src/main/java/org/exoplatform/groovyscript/GroovyTemplate.java
===================================================================
---
portal/branches/3.0.0-Beta05-CP/component/scripting/src/main/java/org/exoplatform/groovyscript/GroovyTemplate.java 2010-02-03
04:29:14 UTC (rev 1503)
+++
portal/branches/3.0.0-Beta05-CP/component/scripting/src/main/java/org/exoplatform/groovyscript/GroovyTemplate.java 2010-02-03
04:35:37 UTC (rev 1504)
@@ -70,6 +70,8 @@
if (templateName == null)
{
templateName = "fic";
+ } else {
+ templateName = templateName.replaceAll("-", "_");
}
//
Copied:
portal/branches/3.0.0-Beta05-CP/component/scripting/src/test/java/org/exoplatform/groovyscript/TestGroovyTemplateEngine.java
(from rev 1470,
portal/trunk/component/scripting/src/test/java/org/exoplatform/groovyscript/TestGroovyTemplateEngine.java)
===================================================================
---
portal/branches/3.0.0-Beta05-CP/component/scripting/src/test/java/org/exoplatform/groovyscript/TestGroovyTemplateEngine.java
(rev 0)
+++
portal/branches/3.0.0-Beta05-CP/component/scripting/src/test/java/org/exoplatform/groovyscript/TestGroovyTemplateEngine.java 2010-02-03
04:35:37 UTC (rev 1504)
@@ -0,0 +1,41 @@
+/**
+ * Copyright (C) 2009 eXo Platform SAS.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
+ */
+package org.exoplatform.groovyscript;
+
+import junit.framework.TestCase;
+
+import java.io.IOException;
+
+/**
+ * @author <a href="mailto:trong.tran@exoplatform.com">Trong
Tran</a>
+ * @version $Revision$
+ */
+public class TestGroovyTemplateEngine extends TestCase
+{
+ public void testFileName() throws IOException, TemplateCompilationException
+ {
+
+ GroovyTemplateEngine engine_ = new GroovyTemplateEngine();
+ try {
+ GroovyTemplate template =
engine_.createTemplate("/path/to/file-lt.gtmpl", "file-lt.gtmpl",
"content of the file.gtmpl");
+ } catch (GroovyCompilationException e) {
+ fail("Creating GroovyTemplate is failed ");
+ }
+ }
+}