You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by hu...@apache.org on 2004/03/29 03:37:39 UTC

cvs commit: jakarta-commons-sandbox/chain/apps/mailreader/src/test/org/apache/commons/mailreader LogonUserTest.java

husted      2004/03/28 17:37:39

  Added:       chain/apps/mailreader/src/test/org/apache/commons/mailreader
                        LogonUserTest.java
  Log:
  Add LogonUser test.
  
  Revision  Changes    Path
  1.1                  jakarta-commons-sandbox/chain/apps/mailreader/src/test/org/apache/commons/mailreader/LogonUserTest.java
  
  Index: LogonUserTest.java
  ===================================================================
  /*
   * $Header: /home/cvs/jakarta-commons-sandbox/chain/apps/mailreader/src/test/org/apache/commons/mailreader/LogonUserTest.java,v 1.1 2004/03/29 01:37:39 husted Exp $
   * $Revision: 1.1 $
   * $Date: 2004/03/29 01:37:39 $
   *
   * Copyright 2000-2004 Apache Software Foundation
   *
   * Licensed 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.commons.mailreader;
  
  import junit.framework.TestCase;
  import junit.framework.Assert;
  import org.apache.commons.chain.Command;
  import org.apache.commons.chain.Context;
  import org.apache.commons.chain.mailreader.MailReader;
  import org.apache.commons.chain.mailreader.MailReaderBase;
  import org.apache.commons.chain.mailreader.commands.LocaleChange;
  import org.apache.commons.chain.impl.ContextBase;
  import org.apache.struts.webapp.example.User;
  import org.apache.struts.webapp.example.UserDatabase;
  import org.apache.struts.webapp.example.memory.MemoryUserDatabase;
  
  import java.util.Locale;
  
  /**
   */
  public class LogonUserTest extends TestCase {
  
      private Locale locale = Locale.getDefault();
      private UserDatabase database;
      private Command command;
  
      private static String USER = "user";
      private static String PASS = "pass";
      private static String FULL_NAME = "John Q. User";
  
      public void setUp() {
  
          command = new LogonUser();
          database = new MemoryUserDatabase();
          User user = database.createUser(USER);
          user.setPassword(PASS);
          user.setFullName(FULL_NAME);
  
      }
  
      public void testJohnQ() {
  
          Context input = new ContextBase();
          input.put(MailReader.PN_USERNAME,USER);
          input.put(MailReader.PN_PASSWORD,PASS);
  
          MailReader context = new MailReaderBase(locale,input,database);
  
          try {
              command.execute(context);
          }
          catch(Exception e) {
              fail(e.getMessage());
          }
  
          User user = context.getUser();
          assertNotNull("Where's waldo?",user);
          assertEquals("Who am I?","John Q. User",user.getFullName());
  
      }
  
  }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org