blob: cc18bb68cd0a4b34f01cf61f11b888f6528d3069 [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 javax.mail.MessagingException;
import junit.framework.TestCase;
import org.apache.jsieve.commands.ThrowTestException;
import org.apache.jsieve.exception.SieveException;
import org.apache.jsieve.mail.SieveMailException;
import org.apache.jsieve.parser.generated.ParseException;
import org.apache.jsieve.utils.JUnitUtils;
import org.apache.jsieve.utils.SieveMailAdapter;
/**
* Class SizeTest
*/
public class SizeTest extends TestCase {
/**
* Test for Test 'size'
*/
public void testSizeIsOverTrue() {
boolean isTestPassed = false;
SieveMailAdapter mail = null;
int size = 0;
try {
mail = (SieveMailAdapter) JUnitUtils.createMail();
mail.getMessage().setText("Hi!");
mail.getMessage().saveChanges();
// Need to copy the mail to get JavaMail to report the message size
// correctly (saveChanges() only saves the headers!)
mail = (SieveMailAdapter) JUnitUtils.copyMail(mail);
size = mail.getSize();
} catch (SieveMailException e) {
} catch (MessagingException e) {
}
String script = "if size :over " + new Integer(size - 1).toString()
+ " {throwTestException;}";
try {
JUnitUtils.interpret(mail, script);
}
catch (ThrowTestException.TestException e) {
isTestPassed = true;
} catch (ParseException e) {
} catch (SieveException e) {
}
assertTrue(isTestPassed);
}
/**
* Test for Test 'size'
*/
public void testSizeIsOverFalse() {
boolean isTestPassed = false;
SieveMailAdapter mail = null;
int size = 0;
try {
mail = (SieveMailAdapter) JUnitUtils.createMail();
mail.getMessage().setText("Hi!");
mail.getMessage().saveChanges();
// Need to copy the mail to get JavaMail to report the message size
// correctly (saveChanges() only saves the headers!)
mail = (SieveMailAdapter) JUnitUtils.copyMail(mail);
size = mail.getSize();
} catch (SieveMailException e) {
} catch (MessagingException e) {
}
String script = "if size :over " + new Integer(size).toString()
+ " {throwTestException;}";
try {
JUnitUtils.interpret(mail, script);
isTestPassed = true;
}
catch (ThrowTestException.TestException e) {
} catch (ParseException e) {
} catch (SieveException e) {
}
assertTrue(isTestPassed);
}
/**
* Test for Test 'size'
*/
public void testSizeIsUnderTrue() {
boolean isTestPassed = false;
SieveMailAdapter mail = null;
int size = 0;
try {
mail = (SieveMailAdapter) JUnitUtils.createMail();
mail.getMessage().setText("Hi!");
mail.getMessage().saveChanges();
// Need to copy the mail to get JavaMail to report the message size
// correctly (saveChanges() only saves the headers!)
mail = (SieveMailAdapter) JUnitUtils.copyMail(mail);
size = mail.getSize();
} catch (SieveMailException e) {
} catch (MessagingException e) {
}
String script = "if size :under " + new Integer(size + 1).toString()
+ " {throwTestException;}";
try {
JUnitUtils.interpret(mail, script);
}
catch (ThrowTestException.TestException e) {
isTestPassed = true;
} catch (ParseException e) {
} catch (SieveException e) {
}
assertTrue(isTestPassed);
}
/**
* Test for Test 'size'
*/
public void testSizeIsUnderFalse() {
boolean isTestPassed = false;
SieveMailAdapter mail = null;
int size = 0;
try {
mail = (SieveMailAdapter) JUnitUtils.createMail();
mail.getMessage().setText("Hi!");
mail.getMessage().saveChanges();
// Need to copy the mail to get JavaMail to report the message size
// correctly (saveChanges() only saves the headers!)
mail = (SieveMailAdapter) JUnitUtils.copyMail(mail);
size = mail.getSize();
} catch (SieveMailException e) {
} catch (MessagingException e) {
}
String script = "if size :over " + new Integer(size).toString()
+ " {throwTestException;}";
try {
JUnitUtils.interpret(mail, script);
isTestPassed = true;
}
catch (ThrowTestException.TestException e) {
} catch (ParseException e) {
} catch (SieveException e) {
}
assertTrue(isTestPassed);
}
/**
* Test for Test 'size' with quantifier
*/
public void testSizeIsWithQuantifier() throws Exception {
boolean isTestPassed = false;
SieveMailAdapter mail = (SieveMailAdapter) JUnitUtils.createMail();
mail.getMessage().setText("Hi!");
mail.getMessage().saveChanges();
// Need to copy the mail to get JavaMail to report the message size
// correctly (saveChanges() only saves the headers!)
mail = (SieveMailAdapter) JUnitUtils.copyMail(mail);
String script = "if size :over 1G {throwTestException;}";
try {
JUnitUtils.interpret(mail, script);
isTestPassed = true;
}
catch (ThrowTestException.TestException e) {
} catch (ParseException e) {
} catch (SieveException e) {
}
assertTrue(isTestPassed);
}
}