[M120 Migration][MM] Support W3C EME
[platform/framework/web/chromium-efl.git] / tizen_src / ewk / unittest / utc_blink_ewk_back_forward_list_previous_item_get_func.cpp
1 // Copyright 2014 Samsung Electronics. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "utc_blink_ewk_base.h"
6
7 class utc_blink_ewk_back_forward_list_previous_item_get : public utc_blink_ewk_base
8 {
9 protected:
10  void LoadFinished(Evas_Object*) override { EventLoopStop(Success); }
11
12 protected:
13   static const char* const TEST_URL1;
14   static const char* const TEST_URL2;
15   static const char* const TEST_URL3;
16 };
17
18 const char* const utc_blink_ewk_back_forward_list_previous_item_get::TEST_URL1 = "ewk_history/page1.html";
19 const char* const utc_blink_ewk_back_forward_list_previous_item_get::TEST_URL2 = "ewk_history/page2.html";
20 const char* const utc_blink_ewk_back_forward_list_previous_item_get::TEST_URL3 = "ewk_history/page3.html";
21
22 TEST_F(utc_blink_ewk_back_forward_list_previous_item_get, POS_TEST)
23 {
24   // load 3 pages to get some interesting history
25   ASSERT_EQ(EINA_TRUE, ewk_view_url_set(GetEwkWebView(), GetResourceUrl(TEST_URL1).c_str()));
26   ASSERT_EQ(Success, EventLoopStart());
27   std::string expectedTitle1(ewk_view_title_get(GetEwkWebView()));
28   ASSERT_EQ(EINA_TRUE, ewk_view_url_set(GetEwkWebView(), GetResourceUrl(TEST_URL2).c_str()));
29   ASSERT_EQ(Success, EventLoopStart());
30   std::string expectedTitle2(ewk_view_title_get(GetEwkWebView()));
31   ASSERT_EQ(EINA_TRUE, ewk_view_url_set(GetEwkWebView(), GetResourceUrl(TEST_URL3).c_str()));
32   ASSERT_EQ(Success, EventLoopStart());
33
34   // get back-forward list
35   Ewk_Back_Forward_List *list = ewk_view_back_forward_list_get(GetEwkWebView());
36   ASSERT_TRUE(list);
37
38   // get prev item and check URL, original URL and title
39   Ewk_Back_Forward_List_Item *item = ewk_back_forward_list_previous_item_get(list);
40
41   ASSERT_STREQ(GetResourceUrl(TEST_URL2).c_str(), ewk_back_forward_list_item_url_get(item));
42   ASSERT_STREQ(GetResourceUrl(TEST_URL2).c_str(), ewk_back_forward_list_item_original_url_get(item));
43   ASSERT_STREQ(expectedTitle2.c_str(), ewk_back_forward_list_item_title_get(item));
44
45   // go back
46   ASSERT_EQ(EINA_TRUE, ewk_view_back(GetEwkWebView()));
47   ASSERT_EQ(Success, EventLoopStart());
48
49   // get prev item and check URL, original URL and title
50   item = ewk_back_forward_list_previous_item_get(list);
51
52   ASSERT_STREQ(GetResourceUrl(TEST_URL1).c_str(), ewk_back_forward_list_item_url_get(item));
53   ASSERT_STREQ(GetResourceUrl(TEST_URL1).c_str(), ewk_back_forward_list_item_original_url_get(item));
54   ASSERT_STREQ(expectedTitle1.c_str(), ewk_back_forward_list_item_title_get(item));
55
56   // go back
57   ASSERT_EQ(EINA_TRUE, ewk_view_back(GetEwkWebView()));
58   ASSERT_EQ(Success, EventLoopStart());
59
60   // get prev item and it should be null
61   ASSERT_EQ(NULL, ewk_back_forward_list_previous_item_get(list)) << "there should not be any previous item, but there is!";
62
63   // load page so the list should be changed
64   ASSERT_EQ(EINA_TRUE, ewk_view_url_set(GetEwkWebView(), GetResourceUrl(TEST_URL3).c_str()));
65   ASSERT_EQ(Success, EventLoopStart());
66
67   // get current item and check URL, original URL and title
68   item = ewk_back_forward_list_previous_item_get(list);
69
70   ASSERT_STREQ(GetResourceUrl(TEST_URL1).c_str(), ewk_back_forward_list_item_url_get(item));
71   ASSERT_STREQ(GetResourceUrl(TEST_URL1).c_str(), ewk_back_forward_list_item_original_url_get(item));
72   ASSERT_STREQ(expectedTitle1.c_str(), ewk_back_forward_list_item_title_get(item));
73 }
74
75 TEST_F(utc_blink_ewk_back_forward_list_previous_item_get, EMPTY_TEST)
76 {
77   Ewk_Back_Forward_List *list = ewk_view_back_forward_list_get(GetEwkWebView());
78   ASSERT_TRUE(list);
79   ASSERT_EQ(NULL, ewk_back_forward_list_previous_item_get(list));
80 }
81
82 TEST_F(utc_blink_ewk_back_forward_list_previous_item_get, NULL_TEST)
83 {
84   ASSERT_EQ(NULL, ewk_back_forward_list_previous_item_get(NULL));
85 }