Package org.ajax4jsf.codec

Source Code of org.ajax4jsf.codec.CodecTest$CodecTestRunnable

/**
* License Agreement.
*
* Rich Faces - Natural Ajax for Java Server Faces (JSF)
*
* Copyright (C) 2007 Exadel, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1 as published by the Free Software Foundation.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
*/

package org.ajax4jsf.codec;

import javax.faces.context.FacesContext;

import org.ajax4jsf.tests.AbstractThreadedAjax4JsfTestCase;
import org.ajax4jsf.util.base64.Codec;

public class CodecTest extends AbstractThreadedAjax4JsfTestCase {
  Codec c;

  public CodecTest(String s) {
    super(s);
  }
 
  public void setUp() throws Exception {
    super.setUp();
    String message = "";
    try {
      c = new Codec("anbshsquycwuudyft");
    } catch (Exception e) {
      message = "Cannot create Codec instance " + e.getMessage();
    }
    assertNotNull(message, c);
  }

  public void tearDown() throws Exception {
    super.tearDown();
  }

  public void testCodec() {
    CodecTestRunnable[] runnables = new CodecTestRunnable[100];
    for (int i = 0; i < runnables.length; i++) {
      runnables[i] = new CodecTestRunnable(c, generateRandomString(), i);
    }
    runTestCaseRunnables(runnables);
  }
 
  private String generateRandomString() {
    StringBuffer ss = new StringBuffer();
    for (int i = 0; i < 50000; i++) {
      char c = (char)(96 + Math.random() * 26);
      ss.append(c);
    }
    return ss.toString();
  }
 
  class CodecTestRunnable extends TestCaseRunnable {
    Codec c;
    String s;
    int id;
   
    public CodecTestRunnable(Codec c, String s, int id) {
      this.c = c;
      this.s = s;
      this.id = id;
    }

   
    public void runTestCase(FacesContext context) throws Throwable {
      String s1 = c.encode(s);
      String s2 = c.decode(s1);
      assertEquals("Failure in thread " + id, s2, s);
    }
   
  }

}
TOP

Related Classes of org.ajax4jsf.codec.CodecTest$CodecTestRunnable

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.