* extras/hbvpdf/hbvpdf.hbx
! two more corrections
* contrib/gtwvg/tests/_dyndlgs.prg
* contrib/hbct/doc/en/finan.txt
* contrib/hbct/readme.txt
* contrib/hbct/tests/asciisum.prg
* contrib/hbct/tests/trig.prg
* contrib/hbfoxpro/dll.prg
* contrib/hbhttpd/core.prg
* contrib/hbhttpd/widgets.prg
* contrib/hbmisc/fcomma.prg
* contrib/hbmlzo/tests/test.prg
* contrib/hbmxml/tests/custom.prg
* contrib/hbmzip/readme.txt
* contrib/hbnf/nwuid.prg
* contrib/hbnf/vidcur.prg
* contrib/hbtip/client.prg
* contrib/hbwin/tests/olesrv1.prg
* contrib/hbwin/tests/testprn.prg
* contrib/xhb/cstruct.prg
* contrib/xhb/hjwindow.prg
* contrib/xhb/hterrsys.prg
* contrib/xhb/htjlist.prg
* contrib/xhb/htmutil.prg
* contrib/xhb/tests/decode.prg
* contrib/xhb/xhberr.prg
* doc/cmdline.txt
* doc/en/objfunc.txt
* doc/en/set.txt
* doc/en/string.txt
* doc/pragma.txt
* extras/gfspell/spell.prg
* extras/gtwvw/docs/gtwvw.txt
* extras/gtwvw/tests/wvwtest9.prg
* extras/hbvpdf/core.prg
* extras/hbvpdf/fonts.prg
* extras/hbvpdf/tests/pdf_demo.prg
* extras/httpsrv/cgifunc.prg
* extras/httpsrv/home/counter.html
* extras/httpsrv/home/testxmldb.html
* extras/httpsrv/session.prg
* extras/httpsrv/uhttpd.prg
* tests/base64.prg
* tests/boxtest.prg
* tests/db_brows.prg
* tests/ddate.prg
* tests/inherit.prg
* tests/langmsg.prg
* tests/mathtest.prg
* tests/memtst.prg
* tests/readhrb.prg
* tests/switch.prg
* tests/testsha2.prg
* tests/testwarn.prg
* tests/tstdbi.prg
* tests/utf8at.prg
* utils/hbtest/hbtest.prg
* utils/hbtest/rt_class.prg
* utils/hbtest/rt_date.prg
* utils/hbtest/rt_hvma.prg
* utils/hbtest/rt_math.prg
* utils/hbtest/rt_misc.prg
* utils/hbtest/rt_trans.prg
* website/news.html
* website/news1.html
* website/samples.html
* website/samples/arreval.html
* website/samples/codebl.prg.html
* website/samples/dates3.html
* website/samples/switch.prg.html
* website/samples/testcgi.prg.html
* website/samples/tstmacro.prg.html
* rerun case fixer script after applying
some fixes, and this time it run fully
automatically.
198 lines
12 KiB
Plaintext
198 lines
12 KiB
Plaintext
/*
|
|
* $Id$
|
|
*/
|
|
|
|
/*
|
|
* Harbour Project source code:
|
|
* Regression tests for the runtime library (date)
|
|
*
|
|
* Copyright 1999-2001 Viktor Szakats (harbour syenar.net)
|
|
* www - http://harbour-project.org
|
|
*
|
|
* This program 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.
|
|
*
|
|
* This program 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 this software; see the file COPYING. If not, write to
|
|
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
|
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
|
|
*
|
|
* As a special exception, the Harbour Project gives permission for
|
|
* additional uses of the text contained in its release of Harbour.
|
|
*
|
|
* The exception is that, if you link the Harbour libraries with other
|
|
* files to produce an executable, this does not by itself cause the
|
|
* resulting executable to be covered by the GNU General Public License.
|
|
* Your use of that executable is in no way restricted on account of
|
|
* linking the Harbour library code into it.
|
|
*
|
|
* This exception does not however invalidate any other reasons why
|
|
* the executable file might be covered by the GNU General Public License.
|
|
*
|
|
* This exception applies only to the code released by the Harbour
|
|
* Project under the name Harbour. If you copy code from other
|
|
* Harbour Project or Free Software Foundation releases into a copy of
|
|
* Harbour, as the General Public License permits, the exception does
|
|
* not apply to the code that you add in this way. To avoid misleading
|
|
* anyone as to the status of such modified files, you must delete
|
|
* this exception notice from them.
|
|
*
|
|
* If you write modifications of your own for Harbour, it is your choice
|
|
* whether to permit this exception to apply to your modifications.
|
|
* If you do not wish that, delete this exception notice.
|
|
*
|
|
*/
|
|
|
|
#include "rt_main.ch"
|
|
|
|
/* Don't change the position of this #include. */
|
|
#include "rt_vars.ch"
|
|
|
|
PROCEDURE Main_DATE()
|
|
LOCAL cDate := "1999/11/25"
|
|
|
|
/* Year() */
|
|
|
|
TEST_LINE( Year(NIL) , "E 1 BASE 1112 Argument error (YEAR) OS:0 #:0 A:1:U:NIL F:S" )
|
|
TEST_LINE( Year(100) , "E 1 BASE 1112 Argument error (YEAR) OS:0 #:0 A:1:N:100 F:S" )
|
|
#ifdef __HARBOUR__
|
|
TEST_LINE( Year(@sdDate) , 1984 ) /* Bug in CA-Cl*pper, it returns: "E 1 BASE 1112 Argument error (YEAR) OS:0 #:0 A:1:U:19840325 F:S" */
|
|
#endif
|
|
TEST_LINE( Year(sdDate) , 1984 )
|
|
TEST_LINE( Year(sdDateE) , 0 )
|
|
TEST_LINE( Str(Year(hb_SToD("19990905"))) , " 1999" )
|
|
|
|
/* Month() */
|
|
|
|
TEST_LINE( Month(NIL) , "E 1 BASE 1113 Argument error (MONTH) OS:0 #:0 A:1:U:NIL F:S" )
|
|
TEST_LINE( Month(100) , "E 1 BASE 1113 Argument error (MONTH) OS:0 #:0 A:1:N:100 F:S" )
|
|
#ifdef __HARBOUR__
|
|
TEST_LINE( Month(@sdDate) , 3 ) /* Bug in CA-Cl*pper, it returns: "E 1 BASE 1113 Argument error (MONTH) OS:0 #:0 A:1:U:19840325 F:S" */
|
|
#endif
|
|
TEST_LINE( Month(sdDate) , 3 )
|
|
TEST_LINE( Month(sdDateE) , 0 )
|
|
TEST_LINE( Str(Month(hb_SToD("19990905"))) , " 9" )
|
|
|
|
/* Day() */
|
|
|
|
TEST_LINE( Day(NIL) , "E 1 BASE 1114 Argument error (DAY) OS:0 #:0 A:1:U:NIL F:S" )
|
|
TEST_LINE( Day(100) , "E 1 BASE 1114 Argument error (DAY) OS:0 #:0 A:1:N:100 F:S" )
|
|
#ifdef __HARBOUR__
|
|
TEST_LINE( Day(@sdDate) , 25 ) /* Bug in CA-Cl*pper, it returns: "E 1 BASE 1114 Argument error (DAY) OS:0 #:0 A:1:U:19840325 F:S" */
|
|
#endif
|
|
TEST_LINE( Day(sdDate) , 25 )
|
|
TEST_LINE( Day(sdDateE) , 0 )
|
|
TEST_LINE( Str(Day(hb_SToD("19990905"))) , " 5" )
|
|
|
|
/* Time() */
|
|
|
|
TEST_LINE( Len(Time()) , 8 )
|
|
|
|
/* DoW() */
|
|
|
|
TEST_LINE( DoW(NIL) , "E 1 BASE 1115 Argument error (DOW) OS:0 #:0 A:1:U:NIL F:S" )
|
|
TEST_LINE( DoW(100) , "E 1 BASE 1115 Argument error (DOW) OS:0 #:0 A:1:N:100 F:S" )
|
|
#ifdef __HARBOUR__
|
|
TEST_LINE( DoW(@sdDate) , 1 ) /* Bug in CA-Cl*pper, it returns: "E 1 BASE 1115 Argument error (DOW) OS:0 #:0 A:1:U:19840325 F:S" */
|
|
#endif
|
|
TEST_LINE( DoW(sdDate) , 1 )
|
|
TEST_LINE( DoW(sdDateE) , 0 )
|
|
TEST_LINE( DoW(hb_SToD("20000222")) , 3 )
|
|
TEST_LINE( DoW(hb_SToD("20000223")) , 4 )
|
|
TEST_LINE( DoW(hb_SToD("20000224")) , 5 )
|
|
TEST_LINE( DoW(hb_SToD("20000225")) , 6 )
|
|
TEST_LINE( DoW(hb_SToD("20000226")) , 7 )
|
|
TEST_LINE( DoW(hb_SToD("20000227")) , 1 )
|
|
TEST_LINE( DoW(hb_SToD("20000228")) , 2 )
|
|
TEST_LINE( DoW(hb_SToD("20000229")) , 3 )
|
|
TEST_LINE( DoW(hb_SToD("20000230")) , 0 )
|
|
TEST_LINE( DoW(hb_SToD("20000231")) , 0 )
|
|
TEST_LINE( DoW(hb_SToD("20000301")) , 4 )
|
|
|
|
/* CMonth() */
|
|
|
|
TEST_LINE( CMonth(NIL) , "E 1 BASE 1116 Argument error (CMONTH) OS:0 #:0 A:1:U:NIL F:S" )
|
|
TEST_LINE( CMonth(100) , "E 1 BASE 1116 Argument error (CMONTH) OS:0 #:0 A:1:N:100 F:S" )
|
|
#ifdef __HARBOUR__
|
|
TEST_LINE( CMonth(@sdDate) , "March" ) /* Bug in CA-Cl*pper, it returns: "E 1 BASE 1116 Argument error (CMONTH) OS:0 #:0 A:1:U:19840325 F:S" */
|
|
#endif
|
|
TEST_LINE( CMonth(sdDate) , "March" )
|
|
TEST_LINE( CMonth(sdDateE) , "" )
|
|
TEST_LINE( CMonth(hb_SToD("19990101")) , "January" )
|
|
TEST_LINE( CMonth(hb_SToD("19990201")) , "February" )
|
|
TEST_LINE( CMonth(hb_SToD("19990301")) , "March" )
|
|
TEST_LINE( CMonth(hb_SToD("19990401")) , "April" )
|
|
TEST_LINE( CMonth(hb_SToD("19990501")) , "May" )
|
|
TEST_LINE( CMonth(hb_SToD("19990601")) , "June" )
|
|
TEST_LINE( CMonth(hb_SToD("19990701")) , "July" )
|
|
TEST_LINE( CMonth(hb_SToD("19990801")) , "August" )
|
|
TEST_LINE( CMonth(hb_SToD("19990901")) , "September" )
|
|
TEST_LINE( CMonth(hb_SToD("19991001")) , "October" )
|
|
TEST_LINE( CMonth(hb_SToD("19991101")) , "November" )
|
|
TEST_LINE( CMonth(hb_SToD("19991201")) , "December" )
|
|
|
|
/* CDoW() */
|
|
|
|
TEST_LINE( CDoW(NIL) , "E 1 BASE 1117 Argument error (CDOW) OS:0 #:0 A:1:U:NIL F:S" )
|
|
TEST_LINE( CDoW(100) , "E 1 BASE 1117 Argument error (CDOW) OS:0 #:0 A:1:N:100 F:S" )
|
|
#ifdef __HARBOUR__
|
|
TEST_LINE( CDoW(@sdDate) , "Sunday" ) /* Bug in CA-Cl*pper, it returns: "E 1 BASE 1117 Argument error (CDOW) OS:0 #:0 A:1:U:19840325 F:S" */
|
|
#endif
|
|
TEST_LINE( CDoW(sdDate) , "Sunday" )
|
|
TEST_LINE( CDoW(sdDateE) , "" )
|
|
TEST_LINE( CDoW(hb_SToD("20000222")) , "Tuesday" )
|
|
TEST_LINE( CDoW(hb_SToD("20000223")) , "Wednesday" )
|
|
TEST_LINE( CDoW(hb_SToD("20000224")) , "Thursday" )
|
|
TEST_LINE( CDoW(hb_SToD("20000225")) , "Friday" )
|
|
TEST_LINE( CDoW(hb_SToD("20000226")) , "Saturday" )
|
|
TEST_LINE( CDoW(hb_SToD("20000227")) , "Sunday" )
|
|
TEST_LINE( CDoW(hb_SToD("20000228")) , "Monday" )
|
|
TEST_LINE( CDoW(hb_SToD("20000229")) , "Tuesday" )
|
|
TEST_LINE( CDoW(hb_SToD("20000230")) , "" )
|
|
TEST_LINE( CDoW(hb_SToD("20000231")) , "" )
|
|
TEST_LINE( CDoW(hb_SToD("20000301")) , "Wednesday" )
|
|
|
|
/* DToC() */
|
|
|
|
TEST_LINE( DToC(NIL) , "E 1 BASE 1118 Argument error (DTOC) OS:0 #:0 A:1:U:NIL F:S" )
|
|
TEST_LINE( DToC(100) , "E 1 BASE 1118 Argument error (DTOC) OS:0 #:0 A:1:N:100 F:S" )
|
|
TEST_LINE( DToC("") , "E 1 BASE 1118 Argument error (DTOC) OS:0 #:0 A:1:C: F:S" )
|
|
#ifdef __HARBOUR__
|
|
TEST_LINE( DToC(@sdDate) , "1984.03.25" ) /* Bug in CA-Cl*pper, it returns: "E 1 BASE 1118 Argument error (DTOC) OS:0 #:0 A:1:U:19840325 F:S" */
|
|
#endif
|
|
TEST_LINE( DToC(sdDate) , "1984.03.25" )
|
|
TEST_LINE( DToC(sdDateE) , " . . " )
|
|
|
|
/* CToD() */
|
|
|
|
TEST_LINE( CToD(NIL) , "E 1 BASE 1119 Argument error (CTOD) OS:0 #:0 A:1:U:NIL F:S" )
|
|
TEST_LINE( CToD(100) , "E 1 BASE 1119 Argument error (CTOD) OS:0 #:0 A:1:N:100 F:S" )
|
|
TEST_LINE( CToD("") , hb_SToD(" ") )
|
|
#ifdef __HARBOUR__
|
|
TEST_LINE( CToD(@cDate) , hb_SToD("19991125") ) /* Bug in CA-Cl*pper, it returns: "E 1 BASE 1119 Argument error (CTOD) OS:0 #:0 A:1:U:1999/11/25 F:S" */
|
|
#endif
|
|
TEST_LINE( CToD(cDate) , hb_SToD("19991125") )
|
|
TEST_LINE( CToD("1999/11/25/10") , hb_SToD("19991125") )
|
|
|
|
/* DToS() */
|
|
|
|
TEST_LINE( DToS(NIL) , "E 1 BASE 1120 Argument error (DTOS) OS:0 #:0 A:1:U:NIL F:S" )
|
|
TEST_LINE( DToS(100) , "E 1 BASE 1120 Argument error (DTOS) OS:0 #:0 A:1:N:100 F:S" )
|
|
#ifdef __HARBOUR__
|
|
TEST_LINE( DToS(@sdDate) , "19840325" ) /* Bug in CA-Cl*pper, it returns: "E 1 BASE 1120 Argument error (DTOS) OS:0 #:0 A:1:U:19840325 F:S" */
|
|
#endif
|
|
TEST_LINE( DToS(sdDate) , "19840325" )
|
|
TEST_LINE( DToS(sdDateE) , " " )
|
|
|
|
RETURN
|
|
|
|
/* Don't change the position of this #include. */
|
|
#include "rt_init.ch"
|