/*
* JGAAP -- a graphical program for stylometric authorship attribution
* Copyright (C) 2009,2011 by Patrick Juola
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
*
*/
package com.jgaap.eventDrivers;
import static org.junit.Assert.*;
import java.util.Vector;
import org.junit.Test;
import com.jgaap.generics.EventGenerationException;
import com.jgaap.generics.EventDriver;
import com.jgaap.util.Event;
import com.jgaap.util.EventSet;
/**
* @author Patrick Juola
*
*/
public class RareWordsEventDriverTest {
/**
* Test method for {@link com.jgaap.eventDrivers.RareWordsEventDriver#createEventSet(com.jgaap.generics.Document)}.
* @throws EventGenerationException
*/
@Test
public void testCreateEventSetDocumentSet() throws EventGenerationException{
/*Note: Default underlying event set is NaiveWordEventDriver*/
/*HDLegomenaEventDriver - Returns only events that occurs once or twice*/
/*Test One - Normal Text w/ one or two events to return*/
String text = (
"one " +
"two two " +
"three three three " +
"four four four four " +
"five five five five five " +
"six six six six six six"
);
EventDriver ed = new RareWordsEventDriver();
ed.setParameter("M","4");
ed.setParameter("N","5");
EventSet sampleSet = ed.createEventSet(text.toCharArray());
EventSet expectedSet = new EventSet();
Vector<Event> tmp = new Vector<Event>();
tmp.add(new Event("four", ed));
tmp.add(new Event("four", ed));
tmp.add(new Event("four", ed));
tmp.add(new Event("four", ed));
tmp.add(new Event("five", ed));
tmp.add(new Event("five", ed));
tmp.add(new Event("five", ed));
tmp.add(new Event("five", ed));
tmp.add(new Event("five", ed));
expectedSet.addEvents(tmp);
System.out.println(sampleSet.toString());
assertTrue(expectedSet.equals(sampleSet));
}
}