blob: 446736564a59aed0dad02e77cd57d71c65abcd88 [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.jsieve.exception.SieveException;
import org.apache.jsieve.exception.SyntaxException;
import org.apache.jsieve.mail.ActionKeep;
import org.apache.jsieve.mail.MailAdapter;
import org.apache.jsieve.parser.generated.ParseException;
import org.apache.jsieve.utils.JUnitUtils;
import org.junit.Assert;
import org.junit.Test;
/**
* Class KeepTest
*/
public class KeepTest {
/**
* Test for Command 'keep' with invalid arguments
*/
@org.junit.Test
public void testInvalidArguments() {
boolean isTestPassed = false;
String script = "keep 1 ;";
try {
JUnitUtils.interpret(JUnitUtils.createMail(), script);
} catch (SyntaxException e) {
isTestPassed = true;
} catch (ParseException e) {
} catch (SieveException e) {
}
Assert.assertTrue(isTestPassed);
}
/**
* Test for Command 'keep' with an invalid block
*/
@Test
public void testInvalidBlock() {
boolean isTestPassed = false;
String script = "keep 1 {throwTestException;}";
try {
JUnitUtils.interpret(JUnitUtils.createMail(), script);
} catch (SyntaxException e) {
isTestPassed = true;
} catch (ParseException e) {
} catch (SieveException e) {
}
Assert.assertTrue(isTestPassed);
}
/**
* Test for Command 'keep'
*/
@Test
public void testKeep() {
boolean isTestPassed = false;
String script = "keep;";
try {
MailAdapter mail = JUnitUtils.createMail();
JUnitUtils.interpret(mail, script);
Assert.assertTrue(mail.getActions().size() == 1);
Assert.assertTrue(mail.getActions().get(0) instanceof ActionKeep);
isTestPassed = true;
} catch (ParseException e) {
} catch (SieveException e) {
}
Assert.assertTrue(isTestPassed);
}
}