blob: 80c6f8e1e3e953918f935f1a5fe2ada0a46fa9bb [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.jsieve;
import org.apache.commons.logging.LogFactory;
import org.apache.jsieve.parser.generated.ASTstring;
import org.apache.jsieve.parser.generated.Node;
import org.apache.jsieve.utils.JUnitUtils;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import java.util.ArrayList;
import java.util.List;
public class SieveParserVisitorImplQuoteTest {
SieveParserVisitorImpl visitor;
List data;
ASTstring node;
@Before
public void setUp() throws Exception {
final ConfigurationManager configurationManager = new ConfigurationManager();
visitor = new SieveParserVisitorImpl(new BaseSieveContext(
configurationManager.getCommandManager(), configurationManager
.getComparatorManager(), configurationManager
.getTestManager(), LogFactory
.getLog(SieveParserVisitorImplQuoteTest.class)));
data = new ArrayList();
}
private ASTstring stringNode(String value) throws Exception {
Node node = JUnitUtils.parse("fileinto " + value + ";");
return (ASTstring) node.jjtGetChild(0).jjtGetChild(0).jjtGetChild(0).jjtGetChild(0).jjtGetChild(0).jjtGetChild(0);
}
@org.junit.Test
public void testVisitASTstringObjectQuoted() throws Exception {
node = stringNode("\"value\"");
visitor.visit(node, data);
Assert.assertEquals("Data value added after quotes stripped", 1, data.size());
Assert.assertEquals("Data value added after quotes stripped", "value", data
.get(0));
}
@Test
public void testVisitASTstringObjectQuoteInQuoted() throws Exception {
node = stringNode("\"val\\\"ue\"");
visitor.visit(node, data);
Assert.assertEquals("Data value added after quotes stripped", 1, data.size());
Assert.assertEquals("Data value added after quotes stripped", "val\"ue", data
.get(0));
}
@Test
public void testVisitASTstringObjectDoubleSlashQuoted() throws Exception {
node = stringNode("\"val\\\\ue\"");
visitor.visit(node, data);
Assert.assertEquals("Data value added after quotes stripped", 1, data.size());
Assert.assertEquals("Data value added after quotes stripped", "val\\ue", data
.get(0));
}
@Test
public void testVisitASTstringObjectSlashQuoted() throws Exception {
node = stringNode("\"value\"");
visitor.visit(node, data);
Assert.assertEquals("Data value added after quotes stripped", 1, data.size());
Assert.assertEquals("Data value added after quotes stripped", "value", data
.get(0));
}
@Test
public void testVisitASTstringEmptyQuoted() throws Exception {
node = stringNode("\"\"");
visitor.visit(node, data);
Assert.assertEquals("Data value added after quotes stripped", 1, data.size());
Assert.assertEquals("Data value added after quotes stripped", "", data.get(0));
}
@Test
public void testVisitASTstringObjectMultiSlashQuoted() throws Exception {
node = stringNode("\"v\\\\al\\\\ue\\\\\"");
visitor.visit(node, data);
Assert.assertEquals("Data value added after quotes stripped", 1, data.size());
Assert.assertEquals("Data value added after quotes stripped", "v\\al\\ue\\",
data.get(0));
}
}