This is the mail archive of the mauve-patches@sources.redhat.com mailing list for the Mauve project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Patch: CharsetEncoder flush/encode test


We're supposed to be able to encode immediately after a flush.

I will check this testlet in later today.


// Tags: JDK1.4

// Copyright (C) 2005 Free Software Foundation, Inc.
// Written by Anthony Green <green@redhat.com>

// This file is part of Mauve.

// Mauve is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2, or (at your option)
// any later version.

// Mauve 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 General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with Mauve; see the file COPYING.  If not, write to
// the Free Software Foundation, 59 Temple Place - Suite 330,
// Boston, MA 02111-1307, USA.  */

package gnu.testlet.java.nio.charset.CharsetEncoder;

import gnu.testlet.Testlet;
import gnu.testlet.TestHarness;

import java.nio.*;
import java.nio.charset.*; 

public class flushencode implements Testlet
{
  public void test (TestHarness h)
  {
    boolean works = true;

    Charset cs = Charset.forName("UTF-16");
    CharsetEncoder ce = cs.newEncoder ();
    
    ByteBuffer bb;
    CharBuffer cb = CharBuffer.wrap("Hello World! Hello World! Hello World!");

    try 
      {
	bb = ce.encode(cb);
	ce.flush(bb);
	// We're supposed to be able to do this....
	bb = ce.encode(cb);
      }
    catch (Exception ex)
      {
	works = false;
      }

    h.check (works, "can encode after flush");
  }
}



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]