95 lines
2.7 KiB
Java
95 lines
2.7 KiB
Java
/**
|
|
* Copyright (C) 2011-2013,2017 Nicolas Vinot <aeris@imirhil.fr>
|
|
* Copyright (C) 2017 Christian Pierre MOMON <cmomon@april.org>
|
|
*
|
|
* This file is part of (April) Hebdobot.
|
|
*
|
|
* Hebdobot 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.
|
|
*
|
|
* Hebdobot 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 Hebdobot. If not, see <http://www.gnu.org/licenses/>
|
|
*/
|
|
package org.april.hebdobot;
|
|
|
|
import java.io.BufferedReader;
|
|
import java.io.InputStream;
|
|
import java.io.InputStreamReader;
|
|
import java.io.Reader;
|
|
import java.util.regex.Matcher;
|
|
import java.util.regex.Pattern;
|
|
|
|
import org.april.hebdobot.model.Hebdobot;
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
import org.springframework.test.context.ContextConfiguration;
|
|
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
|
|
|
|
/**
|
|
* The Class BotTest.
|
|
*/
|
|
@RunWith(SpringJUnit4ClassRunner.class)
|
|
@ContextConfiguration(locations = "/org/april/hebdobot/conf.xml")
|
|
public class BotTest
|
|
{
|
|
/**
|
|
* Redo.
|
|
*
|
|
* @throws Exception
|
|
* the exception
|
|
*/
|
|
@Test
|
|
public void redo() throws Exception
|
|
{
|
|
final Hebdobot bot = new BotMock();
|
|
bot.run();
|
|
|
|
final InputStream is = BotTest.class.getResourceAsStream("/org/april/hebdobot/review.log");
|
|
if (is == null)
|
|
{
|
|
return;
|
|
}
|
|
try
|
|
{
|
|
final Reader isr = new InputStreamReader(is);
|
|
try
|
|
{
|
|
final BufferedReader isbr = new BufferedReader(isr);
|
|
try
|
|
{
|
|
String line;
|
|
final Pattern pattern = Pattern.compile(".*\\s+<([^>]+)>\\s+(.*)");
|
|
while ((line = isbr.readLine()) != null)
|
|
{
|
|
final Matcher matcher = pattern.matcher(line);
|
|
if (matcher.matches())
|
|
{
|
|
bot.onMessage("channel", matcher.group(1), "", "", matcher.group(2));
|
|
}
|
|
}
|
|
}
|
|
finally
|
|
{
|
|
isbr.close();
|
|
}
|
|
|
|
}
|
|
finally
|
|
{
|
|
isr.close();
|
|
}
|
|
}
|
|
finally
|
|
{
|
|
is.close();
|
|
}
|
|
}
|
|
}
|