git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48702 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			129 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			129 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
///////////////////////////////////////////////////////////////////////////////
 | 
						|
// Name:        tests/streams/sstream.cpp
 | 
						|
// Purpose:     Test wxStringInputStream/wxStringOutputStream
 | 
						|
// Author:      Vadim Zeitlin
 | 
						|
// RCS-ID:      $Id$
 | 
						|
// Copyright:   (c) 2004 Vadim Zeitlin
 | 
						|
// Licence:     wxWidgets licence
 | 
						|
///////////////////////////////////////////////////////////////////////////////
 | 
						|
 | 
						|
// For compilers that support precompilation, includes "wx/wx.h".
 | 
						|
// and "wx/cppunit.h"
 | 
						|
#include "testprec.h"
 | 
						|
 | 
						|
#ifdef __BORLANDC__
 | 
						|
    #pragma hdrstop
 | 
						|
#endif
 | 
						|
 | 
						|
// for all others, include the necessary headers
 | 
						|
#ifndef WX_PRECOMP
 | 
						|
#endif
 | 
						|
 | 
						|
#include "wx/sstream.h"
 | 
						|
 | 
						|
#include "bstream.h"
 | 
						|
 | 
						|
///////////////////////////////////////////////////////////////////////////////
 | 
						|
// The test case
 | 
						|
//
 | 
						|
// Try to fully test wxStringInputStream and wxStringOutputStream
 | 
						|
 | 
						|
class strStream :
 | 
						|
        public BaseStreamTestCase<wxStringInputStream, wxStringOutputStream>
 | 
						|
{
 | 
						|
public:
 | 
						|
    strStream();
 | 
						|
    virtual ~strStream();
 | 
						|
 | 
						|
    CPPUNIT_TEST_SUITE(strStream);
 | 
						|
        // Base class stream tests the strStream supports.
 | 
						|
        CPPUNIT_TEST(Input_GetSize);
 | 
						|
        CPPUNIT_TEST(Input_GetC);
 | 
						|
        CPPUNIT_TEST(Input_Read);
 | 
						|
        CPPUNIT_TEST(Input_Eof);
 | 
						|
        CPPUNIT_TEST(Input_LastRead);
 | 
						|
        CPPUNIT_TEST(Input_CanRead);
 | 
						|
        CPPUNIT_TEST(Input_SeekI);
 | 
						|
        CPPUNIT_TEST(Input_TellI);
 | 
						|
        CPPUNIT_TEST(Input_Peek);
 | 
						|
        CPPUNIT_TEST(Input_Ungetch);
 | 
						|
 | 
						|
        CPPUNIT_TEST(Output_PutC);
 | 
						|
        CPPUNIT_TEST(Output_Write);
 | 
						|
        CPPUNIT_TEST(Output_LastWrite);
 | 
						|
        // seeking currently not supported by output string stream
 | 
						|
        //CPPUNIT_TEST(Output_SeekO);
 | 
						|
        //CPPUNIT_TEST(Output_TellO);
 | 
						|
 | 
						|
        // Other test specific for String stream test case.
 | 
						|
        CPPUNIT_TEST(Output_Check);
 | 
						|
    CPPUNIT_TEST_SUITE_END();
 | 
						|
 | 
						|
protected:
 | 
						|
    void Output_Check();
 | 
						|
 | 
						|
private:
 | 
						|
    // Implement base class functions.
 | 
						|
    virtual wxStringInputStream  *DoCreateInStream();
 | 
						|
    virtual wxStringOutputStream *DoCreateOutStream();
 | 
						|
 | 
						|
    // output the given string to wxStringOutputStream and check that its
 | 
						|
    // contents is exactly the same string
 | 
						|
    void CheckString(const wxString& text);
 | 
						|
 | 
						|
    wxString m_str;
 | 
						|
};
 | 
						|
 | 
						|
strStream::strStream()
 | 
						|
{
 | 
						|
    static const size_t LEN = 256;
 | 
						|
    m_str.reserve(LEN);
 | 
						|
    for ( size_t n = 0; n < LEN; n++ )
 | 
						|
    {
 | 
						|
        m_str += wxChar(_T('A') + n % (_T('Z') - _T('A') + 1));
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
strStream::~strStream()
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
wxStringInputStream *strStream::DoCreateInStream()
 | 
						|
{
 | 
						|
    wxStringInputStream *pStrInStream = new wxStringInputStream(m_str);
 | 
						|
    CPPUNIT_ASSERT(pStrInStream->IsOk());
 | 
						|
    return pStrInStream;
 | 
						|
}
 | 
						|
 | 
						|
wxStringOutputStream *strStream::DoCreateOutStream()
 | 
						|
{
 | 
						|
    wxStringOutputStream *pStrOutStream = new wxStringOutputStream();
 | 
						|
    CPPUNIT_ASSERT(pStrOutStream->IsOk());
 | 
						|
    return pStrOutStream;
 | 
						|
}
 | 
						|
 | 
						|
void strStream::CheckString(const wxString& text)
 | 
						|
{
 | 
						|
    wxStringOutputStream sos;
 | 
						|
 | 
						|
    size_t len = text.length();
 | 
						|
#if wxUSE_UNICODE
 | 
						|
    const wxCharBuffer textMB(wxConvLibc.cWC2MB(text.wc_str(), len + 1, &len));
 | 
						|
#else
 | 
						|
    const char *textMB = text.c_str();
 | 
						|
#endif
 | 
						|
 | 
						|
    sos.Write(textMB, len);
 | 
						|
 | 
						|
    CPPUNIT_ASSERT_EQUAL( text, sos.GetString() );
 | 
						|
}
 | 
						|
 | 
						|
void strStream::Output_Check()
 | 
						|
{
 | 
						|
    CheckString("Hello world!");
 | 
						|
    CheckString(wxString("hi\0dden", 8));
 | 
						|
}
 | 
						|
 | 
						|
// Register the stream sub suite, by using some stream helper macro.
 | 
						|
STREAM_TEST_SUBSUITE_NAMED_REGISTRATION(strStream)
 |