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/06/01 02:52:47 UTC

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

husted      2004/05/31 17:52:47

  Added:       chain/apps/mailreader/src/test/org/apache/commons/mailreader
                        ProfileCheckTest.java LocaleValueTest.java
  Log:
  Add tests.
  
  Revision  Changes    Path
  1.1                  jakarta-commons-sandbox/chain/apps/mailreader/src/test/org/apache/commons/mailreader/ProfileCheckTest.java
  
  Index: ProfileCheckTest.java
  ===================================================================
  /*
  
   * $Header: /home/cvs/jakarta-commons-sandbox/chain/apps/mailreader/src/test/org/apache/commons/mailreader/ProfileCheckTest.java,v 1.1 2004/06/01 00:52:47 husted Exp $
   * $Revision: 1.1 $
   * $Date: 2004/06/01 00:52:47 $
   *
   * 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 org.apache.commons.chain.Command;
  import org.apache.commons.chain.Context;
  import org.apache.commons.chain.mailreader.commands.ProfileCheck;
  import org.apache.commons.chain.mailreader.commands.Profile;
  import org.apache.commons.chain.impl.ContextBase;
  
  public class ProfileCheckTest extends TestCase {
  
      public void testProfileCheckNeed() {
  
          Context context = new ContextBase();
          Command command = new ProfileCheck();
          try {
              command.execute(context);
          } catch (Exception e) {
              fail(e.getMessage());
          }
  
          Profile profile = (Profile) context.get(Profile.PROFILE_KEY);
          assertNotNull("Missing Profile", profile);
  
      }
  
      public void testProfileCheckHave() {
  
          Profile profile = new Profile();
          Context context = new ContextBase();
          context.put(Profile.PROFILE_KEY, profile);
  
          Command command = new ProfileCheck();
          try {
              command.execute(context);
          } catch (Exception e) {
              fail(e.getMessage());
          }
  
          Profile profile2 = (Profile) context.get(Profile.PROFILE_KEY);
          assertNotNull("Missing Profile", profile2);
          assertEquals("Profile instance changed", profile, profile2);
  
      }
  
  }
  
  
  
  1.1                  jakarta-commons-sandbox/chain/apps/mailreader/src/test/org/apache/commons/mailreader/LocaleValueTest.java
  
  Index: LocaleValueTest.java
  ===================================================================
  package org.apache.commons.mailreader;
  
  import junit.framework.TestCase;
  import junit.framework.Assert;
  import org.apache.commons.chain.mailreader.MailReader;
  
  import java.util.Locale;
  
  public class LocaleValueTest extends TestCase {
  
      MailReader context;
  
      public void setUp() {
          context = new MailReader();
      }
  
      public void testLocaleSetPropertyGetMap() {
          Locale expected = Locale.CANADA_FRENCH;
          context.setLocale(expected);
          Locale locale = (Locale) context.get(MailReader.LOCALE_KEY);
          Assert.assertNotNull(locale);
          Assert.assertEquals(expected, locale);
      }
  
      public void testLocalePutMapGetProperty() {
          Locale expected = Locale.ITALIAN;
          context.put(MailReader.LOCALE_KEY, expected);
          Locale locale = context.getLocale();
          Assert.assertNotNull(locale);
          Assert.assertEquals(expected, locale);
      }
  
      public void testLocaleSetTypedWithStringException() {
          String localeString = Locale.US.toString();
          try {
              context.put(MailReader.LOCALE_KEY, localeString);
              fail("Expected 'argument type mismatch' error");
          } catch (UnsupportedOperationException expected) {
              ;
          }
      }
  }
  
  
  

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