]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/graphics/ellipsization.cpp
Really disable wxAny tests under wxOSX.
[wxWidgets.git] / tests / graphics / ellipsization.cpp
index 84fdbd3206d41768981cf4593cbdbb2a694b5256..54c90c9f05bb7c1810bad41430986c0204236c2d 100644 (file)
@@ -31,10 +31,16 @@ public:
 
 private:
     CPPUNIT_TEST_SUITE( EllipsizationTestCase );
 
 private:
     CPPUNIT_TEST_SUITE( EllipsizationTestCase );
-        CPPUNIT_TEST( Ellipsize );
+        CPPUNIT_TEST( NormalCase );
+        CPPUNIT_TEST( EnoughSpace );
+        CPPUNIT_TEST( VeryLittleSpace );
+        CPPUNIT_TEST( HasThreeDots );
     CPPUNIT_TEST_SUITE_END();
 
     CPPUNIT_TEST_SUITE_END();
 
-    void Ellipsize();
+    void NormalCase();
+    void EnoughSpace();
+    void VeryLittleSpace();
+    void HasThreeDots();
 
     DECLARE_NO_COPY_CLASS(EllipsizationTestCase)
 };
 
     DECLARE_NO_COPY_CLASS(EllipsizationTestCase)
 };
@@ -42,10 +48,10 @@ private:
 // register in the unnamed registry so that these tests are run by default
 CPPUNIT_TEST_SUITE_REGISTRATION( EllipsizationTestCase );
 
 // register in the unnamed registry so that these tests are run by default
 CPPUNIT_TEST_SUITE_REGISTRATION( EllipsizationTestCase );
 
-// also include in it's own registry so that these tests can be run alone
+// also include in its own registry so that these tests can be run alone
 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( EllipsizationTestCase, "EllipsizationTestCase" );
 
 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( EllipsizationTestCase, "EllipsizationTestCase" );
 
-void EllipsizationTestCase::Ellipsize()
+void EllipsizationTestCase::NormalCase()
 {
     wxMemoryDC dc;
 
 {
     wxMemoryDC dc;
 
@@ -81,7 +87,7 @@ void EllipsizationTestCase::Ellipsize()
         wxELLIPSIZE_END
     };
 
         wxELLIPSIZE_END
     };
 
-    int widthsToTest[] = { 0, 1, 2, 3, 10, 20, 100 };
+    int widthsToTest[] = { 50, 100, 150 };
 
     for ( unsigned int s = 0; s < WXSIZEOF(stringsToTest); s++ )
     {
 
     for ( unsigned int s = 0; s < WXSIZEOF(stringsToTest); s++ )
     {
@@ -93,7 +99,7 @@ void EllipsizationTestCase::Ellipsize()
             {
                 for ( unsigned int w = 0; w < WXSIZEOF(widthsToTest); w++ )
                 {
             {
                 for ( unsigned int w = 0; w < WXSIZEOF(widthsToTest); w++ )
                 {
-                    wxString ret = wxControlBase::Ellipsize
+                    wxString ret = wxControl::Ellipsize
                                    (
                                     str,
                                     dc,
                                    (
                                     str,
                                     dc,
@@ -104,7 +110,12 @@ void EllipsizationTestCase::Ellipsize()
 
                     WX_ASSERT_MESSAGE
                     (
 
                     WX_ASSERT_MESSAGE
                     (
-                     ("invalid ellipsization for \"%s\"", str),
+                     (
+                        "invalid ellipsization for \"%s\" (%dpx, should be <=%dpx)",
+                        str,
+                        dc.GetMultiLineTextExtent(ret).GetWidth(),
+                        widthsToTest[w]
+                     ),
                      dc.GetMultiLineTextExtent(ret).GetWidth() <= widthsToTest[w]
                     );
                 }
                      dc.GetMultiLineTextExtent(ret).GetWidth() <= widthsToTest[w]
                     );
                 }
@@ -112,3 +123,50 @@ void EllipsizationTestCase::Ellipsize()
         }
     }
 }
         }
     }
 }
+
+
+void EllipsizationTestCase::EnoughSpace()
+{
+    // No ellipsization should occur if there's plenty of space.
+
+    wxMemoryDC dc;
+
+    CPPUNIT_ASSERT_EQUAL("some label",
+                         wxControl::Ellipsize("some label", dc, wxELLIPSIZE_START, 200));
+    CPPUNIT_ASSERT_EQUAL("some label",
+                         wxControl::Ellipsize("some label", dc, wxELLIPSIZE_MIDDLE, 200));
+    CPPUNIT_ASSERT_EQUAL("some label",
+                         wxControl::Ellipsize("some label", dc, wxELLIPSIZE_END, 200));
+}
+
+
+void EllipsizationTestCase::VeryLittleSpace()
+{
+    // If there's not enough space, the shortened label should still contain "..." and one character
+
+    wxMemoryDC dc;
+
+    CPPUNIT_ASSERT_EQUAL("...l",
+                         wxControl::Ellipsize("some label", dc, wxELLIPSIZE_START, 5));
+    CPPUNIT_ASSERT_EQUAL("s...",
+                         wxControl::Ellipsize("some label", dc, wxELLIPSIZE_MIDDLE, 5));
+    CPPUNIT_ASSERT_EQUAL("s...",
+                         wxControl::Ellipsize("some label1", dc, wxELLIPSIZE_MIDDLE, 5));
+    CPPUNIT_ASSERT_EQUAL("s...",
+                         wxControl::Ellipsize("some label", dc, wxELLIPSIZE_END, 5));
+}
+
+
+void EllipsizationTestCase::HasThreeDots()
+{
+    wxMemoryDC dc;
+
+    CPPUNIT_ASSERT( wxControl::Ellipsize("some longer text", dc, wxELLIPSIZE_START, 80).StartsWith("...") );
+    CPPUNIT_ASSERT( !wxControl::Ellipsize("some longer text", dc, wxELLIPSIZE_START, 80).EndsWith("...") );
+
+    CPPUNIT_ASSERT( wxControl::Ellipsize("some longer text", dc, wxELLIPSIZE_END, 80).EndsWith("...") );
+
+    CPPUNIT_ASSERT( wxControl::Ellipsize("some longer text", dc, wxELLIPSIZE_MIDDLE, 80).Contains("...") );
+    CPPUNIT_ASSERT( !wxControl::Ellipsize("some longer text", dc, wxELLIPSIZE_MIDDLE, 80).StartsWith("...") );
+    CPPUNIT_ASSERT( !wxControl::Ellipsize("some longer text", dc, wxELLIPSIZE_MIDDLE, 80).EndsWith("...") );
+}