/* * Copyright 2006-2009 The 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.xml.security.c14n.implementations; import java.io.ByteArrayOutputStream; import java.io.UnsupportedEncodingException; import java.util.Arrays; import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestSuite; public class UtfHelperTest extends TestCase { public void testBug40156() { String s="äöü"; byte a[]=UtfHelpper.getStringInUtf8(s); try { byte correct[]=s.getBytes("UTF8"); boolean equals=Arrays.equals(correct, a); assertTrue(equals); } catch (UnsupportedEncodingException e) { // TODO Auto-generated catch block e.printStackTrace(); } } public void testUtf() throws Exception { int chunk=1<<16; int j=0; ByteArrayOutputStream charByCharOs=new ByteArrayOutputStream(); ByteArrayOutputStream strOs=new ByteArrayOutputStream(); char chs[]=new char[chunk]; for (int i=0;i