Home | History | Annotate | Download | only in base
      1 /*
      2  * libjingle
      3  * Copyright 2004--2011, Google Inc.
      4  *
      5  * Redistribution and use in source and binary forms, with or without
      6  * modification, are permitted provided that the following conditions are met:
      7  *
      8  *  1. Redistributions of source code must retain the above copyright notice,
      9  *     this list of conditions and the following disclaimer.
     10  *  2. Redistributions in binary form must reproduce the above copyright notice,
     11  *     this list of conditions and the following disclaimer in the documentation
     12  *     and/or other materials provided with the distribution.
     13  *  3. The name of the author may not be used to endorse or promote products
     14  *     derived from this software without specific prior written permission.
     15  *
     16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
     17  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
     18  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
     19  * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
     20  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
     21  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
     22  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
     23  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
     24  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
     25  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     26  */
     27 
     28 #include "talk/base/common.h"
     29 #include "talk/base/gunit.h"
     30 #include "talk/base/thread.h"
     31 #include "talk/base/urlencode.h"
     32 
     33 TEST(Urlencode, SourceTooLong) {
     34   char source[] = "^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^"
     35       "^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^";
     36   char dest[1];
     37   ASSERT_EQ(0, UrlEncode(source, dest, ARRAY_SIZE(dest)));
     38   ASSERT_EQ('\0', dest[0]);
     39 
     40   dest[0] = 'a';
     41   ASSERT_EQ(0, UrlEncode(source, dest, 0));
     42   ASSERT_EQ('a', dest[0]);
     43 }
     44 
     45 TEST(Urlencode, OneCharacterConversion) {
     46   char source[] = "^";
     47   char dest[4];
     48   ASSERT_EQ(3, UrlEncode(source, dest, ARRAY_SIZE(dest)));
     49   ASSERT_STREQ("%5E", dest);
     50 }
     51 
     52 TEST(Urlencode, ShortDestinationNoEncoding) {
     53   // In this case we have a destination that would not be
     54   // big enough to hold an encoding but is big enough to
     55   // hold the text given.
     56   char source[] = "aa";
     57   char dest[3];
     58   ASSERT_EQ(2, UrlEncode(source, dest, ARRAY_SIZE(dest)));
     59   ASSERT_STREQ("aa", dest);
     60 }
     61 
     62 TEST(Urlencode, ShortDestinationEncoding) {
     63   // In this case we have a destination that is not
     64   // big enough to hold the encoding.
     65   char source[] = "&";
     66   char dest[3];
     67   ASSERT_EQ(0, UrlEncode(source, dest, ARRAY_SIZE(dest)));
     68   ASSERT_EQ('\0', dest[0]);
     69 }
     70 
     71 TEST(Urlencode, Encoding1) {
     72   char source[] = "A^ ";
     73   char dest[8];
     74   ASSERT_EQ(5, UrlEncode(source, dest, ARRAY_SIZE(dest)));
     75   ASSERT_STREQ("A%5E+", dest);
     76 }
     77 
     78 TEST(Urlencode, Encoding2) {
     79   char source[] = "A^ ";
     80   char dest[8];
     81   ASSERT_EQ(7, UrlEncodeWithoutEncodingSpaceAsPlus(source, dest,
     82                                                    ARRAY_SIZE(dest)));
     83   ASSERT_STREQ("A%5E%20", dest);
     84 }
     85 
     86 TEST(Urldecode, Decoding1) {
     87   char source[] = "A%5E+";
     88   char dest[8];
     89   ASSERT_EQ(3, UrlDecode(source, dest));
     90   ASSERT_STREQ("A^ ", dest);
     91 }
     92 
     93 TEST(Urldecode, Decoding2) {
     94   char source[] = "A%5E+";
     95   char dest[8];
     96   ASSERT_EQ(3, UrlDecodeWithoutEncodingSpaceAsPlus(source, dest));
     97   ASSERT_STREQ("A^+", dest);
     98 }
     99