[Bleeding] Added Conversations API. Addresses BUKKIT-864

By: rmichela <deltahat@gmail.com>
This commit is contained in:
Bukkit/Spigot
2012-01-22 02:35:42 -05:00
parent fb55ed2a78
commit 2280c6be2b
26 changed files with 1446 additions and 2 deletions

View File

@@ -0,0 +1,116 @@
package org.bukkit.conversations;
import org.junit.Test;
import static org.junit.Assert.*;
/**
*/
public class ConversationTest {
@Test
public void testBaseConversationFlow() {
FakeConversable forWhom = new FakeConversable();
Conversation conversation = new Conversation(null, forWhom, new FirstPrompt());
// Conversation not yet begun
assertNull(forWhom.lastSentMessage);
assertEquals(conversation.getForWhom(), forWhom);
assertTrue(conversation.isModal());
// Begin the conversation
conversation.begin();
assertEquals("FirstPrompt", forWhom.lastSentMessage);
assertEquals(conversation, forWhom.begunConversation);
// Send the first input
conversation.acceptInput("FirstInput");
assertEquals("SecondPrompt", forWhom.lastSentMessage);
assertEquals(conversation, forWhom.abandonedConverstion);
}
@Test
public void testConversationFactory() {
FakeConversable forWhom = new FakeConversable();
NullConversationPrefix prefix = new NullConversationPrefix();
ConversationFactory factory = new ConversationFactory(null)
.withFirstPrompt(new FirstPrompt())
.withModality(false)
.withPrefix(prefix);
Conversation conversation = factory.buildConversation(forWhom);
// Conversation not yet begun
assertNull(forWhom.lastSentMessage);
assertEquals(conversation.getForWhom(), forWhom);
assertFalse(conversation.isModal());
assertEquals(conversation.getPrefix(), prefix);
// Begin the conversation
conversation.begin();
assertEquals("FirstPrompt", forWhom.lastSentMessage);
assertEquals(conversation, forWhom.begunConversation);
// Send the first input
conversation.acceptInput("FirstInput");
assertEquals("SecondPrompt", forWhom.lastSentMessage);
assertEquals(conversation, forWhom.abandonedConverstion);
}
@Test
public void testEscapeSequence() {
FakeConversable forWhom = new FakeConversable();
Conversation conversation = new Conversation(null, forWhom, new FirstPrompt());
conversation.addConversationCanceller(new ExactMatchConversationCanceller("bananas"));
// Begin the conversation
conversation.begin();
assertEquals("FirstPrompt", forWhom.lastSentMessage);
assertEquals(conversation, forWhom.begunConversation);
// Send the first input
conversation.acceptInput("bananas");
assertEquals("bananas", forWhom.lastSentMessage);
assertEquals(conversation, forWhom.abandonedConverstion);
}
@Test
public void testNotPlayer() {
FakeConversable forWhom = new FakeConversable();
NullConversationPrefix prefix = new NullConversationPrefix();
ConversationFactory factory = new ConversationFactory(null)
.thatExcludesNonPlayersWithMessage("bye");
Conversation conversation = factory.buildConversation(forWhom);
// Begin the conversation
conversation.begin();
assertEquals("bye", forWhom.lastSentMessage);
assertEquals(conversation, forWhom.begunConversation);
assertEquals(conversation, forWhom.abandonedConverstion);
}
private class FirstPrompt extends StringPrompt {
public String getPromptText(ConversationContext context) {
return "FirstPrompt";
}
public Prompt acceptInput(ConversationContext context, String input) {
assertEquals("FirstInput", input);
context.setSessionData("data", 10);
return new SecondPrompt();
}
}
private class SecondPrompt extends MessagePrompt {
@Override
protected Prompt getNextPrompt(ConversationContext context) {
return Prompt.END_OF_CONVERSATION;
}
public String getPromptText(ConversationContext context) {
// Assert that session data passes from one prompt to the next
assertEquals(context.getSessionData("data"), 10);
return "SecondPrompt";
}
}
}