2001-09-25 22:53:13 +00:00
/* -*- Mode: C++ tab-width: 2 indent-tabs-mode: nil c-basic-offset: 2 -*- */
2012-05-21 11:12:37 +00:00
/* This Source Code Form is subject to the terms of the Mozilla Public
* License , v . 2.0 . If a copy of the MPL was not distributed with this
* file , You can obtain one at http : //mozilla.org/MPL/2.0/. */
1999-04-15 07:01:24 +00:00
2004-01-30 21:09:49 +00:00
# ifdef DEBUG
2004-01-29 22:04:45 +00:00
2014-12-02 05:07:42 +00:00
# include "TextEditorTest.h"
1999-04-15 07:01:24 +00:00
# include <stdio.h>
1999-08-09 01:37:50 +00:00
2012-07-13 06:33:42 +00:00
# include "nsDebug.h"
# include "nsError.h"
2014-08-29 11:43:24 +00:00
# include "nsGkAtoms.h"
1999-04-15 07:01:24 +00:00
# include "nsIDOMCharacterData.h"
# include "nsIDOMDocument.h"
# include "nsIDOMNode.h"
# include "nsIDOMNodeList.h"
2012-07-13 06:33:42 +00:00
# include "nsIEditor.h"
# include "nsIHTMLEditor.h"
# include "nsIPlaintextEditor.h"
# include "nsISelection.h"
# include "nsLiteralString.h"
2004-01-30 21:09:49 +00:00
# include "nsReadableUtils.h"
2012-07-13 06:33:42 +00:00
# include "nsString.h"
# include "nsStringFwd.h"
1999-04-15 07:01:24 +00:00
2012-10-15 21:39:46 +00:00
# define TEST_RESULT(r) { if (NS_FAILED(r)) {printf("FAILURE result=%X\n", static_cast<uint32_t>(r)); return r; } }
1999-04-15 07:01:24 +00:00
# define TEST_POINTER(p) { if (!p) {printf("FAILURE null pointer\n"); return NS_ERROR_NULL_POINTER; } }
TextEditorTest : : TextEditorTest ( )
{
printf ( " constructed a TextEditorTest \n " ) ;
}
TextEditorTest : : ~ TextEditorTest ( )
{
printf ( " destroyed a TextEditorTest \n " ) ;
}
2012-08-22 15:56:38 +00:00
void TextEditorTest : : Run ( nsIEditor * aEditor , int32_t * outNumTests , int32_t * outNumTestsFailed )
1999-04-15 07:01:24 +00:00
{
if ( ! aEditor ) return ;
mTextEditor = do_QueryInterface ( aEditor ) ;
mEditor = do_QueryInterface ( aEditor ) ;
1999-05-27 04:10:04 +00:00
RunUnitTest ( outNumTests , outNumTestsFailed ) ;
1999-04-15 07:01:24 +00:00
}
2012-08-22 15:56:38 +00:00
nsresult TextEditorTest : : RunUnitTest ( int32_t * outNumTests , int32_t * outNumTestsFailed )
1999-04-15 07:01:24 +00:00
{
nsresult result ;
2015-05-28 15:58:42 +00:00
2010-06-17 20:40:48 +00:00
NS_ENSURE_TRUE ( outNumTests & & outNumTestsFailed , NS_ERROR_NULL_POINTER ) ;
2015-05-28 15:58:42 +00:00
1999-05-27 04:10:04 +00:00
* outNumTests = 0 ;
* outNumTestsFailed = 0 ;
2015-05-28 15:58:42 +00:00
1999-04-15 07:01:24 +00:00
result = InitDoc ( ) ;
TEST_RESULT ( result ) ;
1999-05-27 04:10:04 +00:00
// shouldn't we just bail on error here?
2015-05-28 15:58:42 +00:00
1999-04-15 07:01:24 +00:00
// insert some simple text
2001-04-07 00:45:26 +00:00
result = mTextEditor - > InsertText ( NS_LITERAL_STRING ( " 1234567890abcdefghij1234567890 " ) ) ;
1999-04-15 07:01:24 +00:00
TEST_RESULT ( result ) ;
1999-05-27 04:10:04 +00:00
( * outNumTests ) + + ;
2006-11-18 00:48:56 +00:00
if ( NS_FAILED ( result ) )
+ + ( * outNumTestsFailed ) ;
2015-05-28 15:58:42 +00:00
1999-04-15 07:01:24 +00:00
// insert some more text
2001-04-07 00:45:26 +00:00
result = mTextEditor - > InsertText ( NS_LITERAL_STRING ( " Moreover, I am cognizant of the interrelatedness of all communities and states. I cannot sit idly by in Atlanta and not be concerned about what happens in Birmingham. Injustice anywhere is a threat to justice everywhere " ) ) ;
1999-04-15 07:01:24 +00:00
TEST_RESULT ( result ) ;
1999-05-27 04:10:04 +00:00
( * outNumTests ) + + ;
2006-11-18 00:48:56 +00:00
if ( NS_FAILED ( result ) )
+ + ( * outNumTestsFailed ) ;
1999-04-15 07:01:24 +00:00
result = TestInsertBreak ( ) ;
1999-05-27 04:10:04 +00:00
TEST_RESULT ( result ) ;
( * outNumTests ) + + ;
2006-11-18 00:48:56 +00:00
if ( NS_FAILED ( result ) )
+ + ( * outNumTestsFailed ) ;
1999-04-15 07:01:24 +00:00
result = TestTextProperties ( ) ;
1999-05-27 04:10:04 +00:00
TEST_RESULT ( result ) ;
( * outNumTests ) + + ;
2006-11-18 00:48:56 +00:00
if ( NS_FAILED ( result ) )
+ + ( * outNumTestsFailed ) ;
1999-04-15 07:01:24 +00:00
1999-07-15 19:08:49 +00:00
// get us back to the original document
result = mEditor - > Undo ( 12 ) ;
TEST_RESULT ( result ) ;
1999-04-15 07:01:24 +00:00
return result ;
}
nsresult TextEditorTest : : InitDoc ( )
{
1999-08-09 01:37:50 +00:00
nsresult result = mEditor - > SelectAll ( ) ;
1999-04-15 07:01:24 +00:00
TEST_RESULT ( result ) ;
2012-05-10 14:54:33 +00:00
result = mEditor - > DeleteSelection ( nsIEditor : : eNext , nsIEditor : : eStrip ) ;
1999-04-15 07:01:24 +00:00
TEST_RESULT ( result ) ;
return result ;
}
nsresult TextEditorTest : : TestInsertBreak ( )
{
2000-09-14 11:45:01 +00:00
nsCOMPtr < nsISelection > selection ;
1999-04-15 07:01:24 +00:00
nsresult result = mEditor - > GetSelection ( getter_AddRefs ( selection ) ) ;
TEST_RESULT ( result ) ;
TEST_POINTER ( selection . get ( ) ) ;
nsCOMPtr < nsIDOMNode > anchor ;
1999-07-18 02:27:19 +00:00
result = selection - > GetAnchorNode ( getter_AddRefs ( anchor ) ) ;
1999-04-15 07:01:24 +00:00
TEST_RESULT ( result ) ;
TEST_POINTER ( anchor . get ( ) ) ;
1999-07-18 02:27:19 +00:00
selection - > Collapse ( anchor , 0 ) ;
1999-04-15 07:01:24 +00:00
// insert one break
printf ( " inserting a break \n " ) ;
2000-11-17 00:25:31 +00:00
result = mTextEditor - > InsertLineBreak ( ) ;
1999-04-15 07:01:24 +00:00
TEST_RESULT ( result ) ;
mEditor - > DebugDumpContent ( ) ;
// insert a second break adjacent to the first
printf ( " inserting a second break \n " ) ;
2000-11-17 00:25:31 +00:00
result = mTextEditor - > InsertLineBreak ( ) ;
1999-04-15 07:01:24 +00:00
TEST_RESULT ( result ) ;
mEditor - > DebugDumpContent ( ) ;
2015-05-28 15:58:42 +00:00
1999-04-15 07:01:24 +00:00
return result ;
}
nsresult TextEditorTest : : TestTextProperties ( )
{
nsCOMPtr < nsIDOMDocument > doc ;
nsresult result = mEditor - > GetDocument ( getter_AddRefs ( doc ) ) ;
TEST_RESULT ( result ) ;
TEST_POINTER ( doc . get ( ) ) ;
nsCOMPtr < nsIDOMNodeList > nodeList ;
2005-06-16 13:10:58 +00:00
// XXX This is broken, text nodes are not elements.
nsAutoString textTag ( NS_LITERAL_STRING ( " #text " ) ) ;
1999-04-15 07:01:24 +00:00
result = doc - > GetElementsByTagName ( textTag , getter_AddRefs ( nodeList ) ) ;
TEST_RESULT ( result ) ;
TEST_POINTER ( nodeList . get ( ) ) ;
2012-08-22 15:56:38 +00:00
uint32_t count ;
1999-04-15 07:01:24 +00:00
nodeList - > GetLength ( & count ) ;
NS_ASSERTION ( 0 ! = count , " there are no text nodes in the document! " ) ;
nsCOMPtr < nsIDOMNode > textNode ;
1999-07-25 18:14:44 +00:00
result = nodeList - > Item ( count - 1 , getter_AddRefs ( textNode ) ) ;
1999-04-15 07:01:24 +00:00
TEST_RESULT ( result ) ;
TEST_POINTER ( textNode . get ( ) ) ;
// set the whole text node to bold
printf ( " set the whole first text node to bold \n " ) ;
2000-09-14 11:45:01 +00:00
nsCOMPtr < nsISelection > selection ;
1999-04-15 07:01:24 +00:00
result = mEditor - > GetSelection ( getter_AddRefs ( selection ) ) ;
TEST_RESULT ( result ) ;
TEST_POINTER ( selection . get ( ) ) ;
nsCOMPtr < nsIDOMCharacterData > textData ;
textData = do_QueryInterface ( textNode ) ;
2012-08-22 15:56:38 +00:00
uint32_t length ;
1999-04-15 07:01:24 +00:00
textData - > GetLength ( & length ) ;
1999-07-18 02:27:19 +00:00
selection - > Collapse ( textNode , 0 ) ;
selection - > Extend ( textNode , length ) ;
2000-11-17 00:25:31 +00:00
nsCOMPtr < nsIHTMLEditor > htmlEditor ( do_QueryInterface ( mTextEditor ) ) ;
2010-06-17 20:40:48 +00:00
NS_ENSURE_TRUE ( htmlEditor , NS_ERROR_FAILURE ) ;
2000-11-17 00:25:31 +00:00
2011-09-29 06:19:26 +00:00
bool any = false ;
bool all = false ;
bool first = false ;
2000-11-17 00:25:31 +00:00
2004-01-29 22:04:45 +00:00
const nsAFlatString & empty = EmptyString ( ) ;
2014-08-29 11:43:24 +00:00
result = htmlEditor - > GetInlineProperty ( nsGkAtoms : : b , empty , empty , & first ,
& any , & all ) ;
1999-04-15 07:01:24 +00:00
TEST_RESULT ( result ) ;
2011-10-17 14:59:28 +00:00
NS_ASSERTION ( false = = first , " first should be false " ) ;
NS_ASSERTION ( false = = any , " any should be false " ) ;
NS_ASSERTION ( false = = all , " all should be false " ) ;
2014-08-29 11:43:24 +00:00
result = htmlEditor - > SetInlineProperty ( nsGkAtoms : : b , empty , empty ) ;
1999-04-15 07:01:24 +00:00
TEST_RESULT ( result ) ;
2014-08-29 11:43:24 +00:00
result = htmlEditor - > GetInlineProperty ( nsGkAtoms : : b , empty , empty , & first ,
& any , & all ) ;
1999-04-15 07:01:24 +00:00
TEST_RESULT ( result ) ;
2011-10-17 14:59:28 +00:00
NS_ASSERTION ( true = = first , " first should be true " ) ;
NS_ASSERTION ( true = = any , " any should be true " ) ;
NS_ASSERTION ( true = = all , " all should be true " ) ;
1999-04-15 07:01:24 +00:00
mEditor - > DebugDumpContent ( ) ;
// remove the bold we just set
printf ( " set the whole first text node to not bold \n " ) ;
2014-08-29 11:43:24 +00:00
result = htmlEditor - > RemoveInlineProperty ( nsGkAtoms : : b , empty ) ;
1999-04-15 07:01:24 +00:00
TEST_RESULT ( result ) ;
2014-08-29 11:43:24 +00:00
result = htmlEditor - > GetInlineProperty ( nsGkAtoms : : b , empty , empty , & first ,
& any , & all ) ;
1999-04-15 07:01:24 +00:00
TEST_RESULT ( result ) ;
2011-10-17 14:59:28 +00:00
NS_ASSERTION ( false = = first , " first should be false " ) ;
NS_ASSERTION ( false = = any , " any should be false " ) ;
NS_ASSERTION ( false = = all , " all should be false " ) ;
1999-04-15 07:01:24 +00:00
mEditor - > DebugDumpContent ( ) ;
// set all but the first and last character to bold
printf ( " set the first text node (1, length-1) to bold and italic, and (2, length-1) to underline. \n " ) ;
1999-07-18 02:27:19 +00:00
selection - > Collapse ( textNode , 1 ) ;
selection - > Extend ( textNode , length - 1 ) ;
2014-08-29 11:43:24 +00:00
result = htmlEditor - > SetInlineProperty ( nsGkAtoms : : b , empty , empty ) ;
1999-04-15 07:01:24 +00:00
TEST_RESULT ( result ) ;
2014-08-29 11:43:24 +00:00
result = htmlEditor - > GetInlineProperty ( nsGkAtoms : : b , empty , empty , & first ,
& any , & all ) ;
1999-04-15 07:01:24 +00:00
TEST_RESULT ( result ) ;
2011-10-17 14:59:28 +00:00
NS_ASSERTION ( true = = first , " first should be true " ) ;
NS_ASSERTION ( true = = any , " any should be true " ) ;
NS_ASSERTION ( true = = all , " all should be true " ) ;
1999-04-15 07:01:24 +00:00
mEditor - > DebugDumpContent ( ) ;
// make all that same text italic
2014-08-29 11:43:24 +00:00
result = htmlEditor - > SetInlineProperty ( nsGkAtoms : : i , empty , empty ) ;
1999-04-15 07:01:24 +00:00
TEST_RESULT ( result ) ;
2014-08-29 11:43:24 +00:00
result = htmlEditor - > GetInlineProperty ( nsGkAtoms : : i , empty , empty , & first ,
& any , & all ) ;
1999-04-15 07:01:24 +00:00
TEST_RESULT ( result ) ;
2011-10-17 14:59:28 +00:00
NS_ASSERTION ( true = = first , " first should be true " ) ;
NS_ASSERTION ( true = = any , " any should be true " ) ;
NS_ASSERTION ( true = = all , " all should be true " ) ;
2014-08-29 11:43:24 +00:00
result = htmlEditor - > GetInlineProperty ( nsGkAtoms : : b , empty , empty , & first ,
& any , & all ) ;
1999-04-15 07:01:24 +00:00
TEST_RESULT ( result ) ;
2011-10-17 14:59:28 +00:00
NS_ASSERTION ( true = = first , " first should be true " ) ;
NS_ASSERTION ( true = = any , " any should be true " ) ;
NS_ASSERTION ( true = = all , " all should be true " ) ;
1999-04-15 07:01:24 +00:00
mEditor - > DebugDumpContent ( ) ;
1999-04-20 22:02:02 +00:00
1999-04-15 07:01:24 +00:00
// make all the text underlined, except for the first 2 and last 2 characters
1999-04-20 22:02:02 +00:00
result = doc - > GetElementsByTagName ( textTag , getter_AddRefs ( nodeList ) ) ;
TEST_RESULT ( result ) ;
TEST_POINTER ( nodeList . get ( ) ) ;
nodeList - > GetLength ( & count ) ;
NS_ASSERTION ( 0 ! = count , " there are no text nodes in the document! " ) ;
1999-07-25 18:14:44 +00:00
result = nodeList - > Item ( count - 2 , getter_AddRefs ( textNode ) ) ;
1999-04-20 22:02:02 +00:00
TEST_RESULT ( result ) ;
TEST_POINTER ( textNode . get ( ) ) ;
textData = do_QueryInterface ( textNode ) ;
textData - > GetLength ( & length ) ;
1999-09-09 19:39:36 +00:00
NS_ASSERTION ( length = = 915 , " wrong text node " ) ;
1999-07-18 02:27:19 +00:00
selection - > Collapse ( textNode , 1 ) ;
selection - > Extend ( textNode , length - 2 ) ;
2014-08-29 11:43:24 +00:00
result = htmlEditor - > SetInlineProperty ( nsGkAtoms : : u , empty , empty ) ;
1999-04-15 07:01:24 +00:00
TEST_RESULT ( result ) ;
2014-08-29 11:43:24 +00:00
result = htmlEditor - > GetInlineProperty ( nsGkAtoms : : u , empty , empty , & first ,
& any , & all ) ;
1999-04-15 07:01:24 +00:00
TEST_RESULT ( result ) ;
2011-10-17 14:59:28 +00:00
NS_ASSERTION ( true = = first , " first should be true " ) ;
NS_ASSERTION ( true = = any , " any should be true " ) ;
NS_ASSERTION ( true = = all , " all should be true " ) ;
1999-04-15 07:01:24 +00:00
mEditor - > DebugDumpContent ( ) ;
return result ;
}
# endif