[elm_webview]add TC
authorRyuan Choi <ryuan.choi@samsung.com>
Tue, 14 Sep 2010 03:26:20 +0000 (12:26 +0900)
committerRyuan Choi <ryuan.choi@samsung.com>
Tue, 14 Sep 2010 03:26:20 +0000 (12:26 +0900)
TC/elm_ts/webview/tslist
TC/elm_ts/webview/utc_UIFW_elm_webview_auto_fitting_set_func.c [new file with mode: 0644]
TC/elm_ts/webview/utc_UIFW_elm_webview_default_layout_width_set_func.c [new file with mode: 0644]
TC/elm_ts/webview/utc_UIFW_elm_webview_events_feed_set_func.c [new file with mode: 0644]
TC/elm_ts/webview/utc_UIFW_elm_webview_minimap_get_func.c [new file with mode: 0644]
TC/elm_ts/webview/utc_UIFW_elm_webview_webkit_get_func.c [new file with mode: 0644]
src/lib/elm_webview.c

index b564e56..3c05c9c 100644 (file)
@@ -1 +1,6 @@
 /elm_ts/webview/utc_UIFW_elm_webview_add_func
+/elm_ts/webview/utc_UIFW_elm_webview_webkit_get_func
+/elm_ts/webview/utc_UIFW_elm_webview_events_feed_set_func
+/elm_ts/webview/utc_UIFW_elm_webview_auto_fitting_set_func
+/elm_ts/webview/utc_UIFW_elm_webview_minimap_get_func
+/elm_ts/webview/utc_UIFW_elm_webview_default_layout_width_set_func
diff --git a/TC/elm_ts/webview/utc_UIFW_elm_webview_auto_fitting_set_func.c b/TC/elm_ts/webview/utc_UIFW_elm_webview_auto_fitting_set_func.c
new file mode 100644 (file)
index 0000000..3d4ef06
--- /dev/null
@@ -0,0 +1,107 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_webview_auto_fitting_set_func_01(void);
+static void utc_UIFW_elm_webview_auto_fitting_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_webview_auto_fitting_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_webview_auto_fitting_set_func_02, NEGATIVE_TC_IDX },
+};
+
+static void startup(void)
+{
+       tet_infoline("[[ TET_MSG ]]:: ============ Startup ============ ");
+       elm_init(0, NULL);
+       main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC);
+       evas_object_show(main_win);     
+}
+
+static void cleanup(void)
+{
+       if ( NULL != main_win ) {
+               evas_object_del(main_win);
+               main_win = NULL;
+       }
+       elm_shutdown();
+       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
+}
+
+/**
+ * @brief Positive test case of elm_webview_auto_fitting_set()
+ */
+static void utc_UIFW_elm_webview_auto_fitting_set_func_01(void)
+{
+    Evas_Object *webview = NULL;
+    Eina_Bool auto_fitting = EINA_FALSE;
+    webview = elm_webview_add(main_win);
+
+       elm_webview_auto_fitting_set(webview, EINA_TRUE);
+    auto_fitting = elm_webview_auto_fitting_get(webview);
+    evas_object_del(webview);
+    webview = NULL;
+
+       if (!auto_fitting) {
+               tet_infoline("elm_webview_auto_fitting_set() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_webview_auto_fitting_set()
+ */
+static void utc_UIFW_elm_webview_auto_fitting_set_func_02(void)
+{
+    Eina_Bool auto_fitting = EINA_FALSE;
+
+       elm_webview_auto_fitting_set(NULL, EINA_TRUE);
+    auto_fitting = elm_webview_auto_fitting_get(NULL);
+
+       if (auto_fitting) {
+               tet_infoline("elm_webview_auto_fitting_set() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/webview/utc_UIFW_elm_webview_default_layout_width_set_func.c b/TC/elm_ts/webview/utc_UIFW_elm_webview_default_layout_width_set_func.c
new file mode 100644 (file)
index 0000000..008cbad
--- /dev/null
@@ -0,0 +1,103 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_webview_default_layout_width_set_func_01(void);
+static void utc_UIFW_elm_webview_default_layout_width_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_webview_default_layout_width_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_webview_default_layout_width_set_func_02, NEGATIVE_TC_IDX },
+};
+
+static void startup(void)
+{
+       tet_infoline("[[ TET_MSG ]]:: ============ Startup ============ ");
+       elm_init(0, NULL);
+       main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC);
+       evas_object_show(main_win);     
+}
+
+static void cleanup(void)
+{
+       if ( NULL != main_win ) {
+               evas_object_del(main_win);
+               main_win = NULL;
+       }
+       elm_shutdown();
+       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
+}
+
+/**
+ * @brief Positive test case of elm_webview_default_layout_width_set()
+ */
+static void utc_UIFW_elm_webview_default_layout_width_set_func_01(void)
+{
+       int r = 0;
+
+/*
+       r = elm_webview_default_layout_width_set(...);
+*/
+       if (!r) {
+               tet_infoline("elm_webview_default_layout_width_set() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_webview_default_layout_width_set()
+ */
+static void utc_UIFW_elm_webview_default_layout_width_set_func_02(void)
+{
+       int r = 0;
+
+/*
+       r = elm_webview_default_layout_width_set(...);
+*/
+       if (r) {
+               tet_infoline("elm_webview_default_layout_width_set() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/webview/utc_UIFW_elm_webview_events_feed_set_func.c b/TC/elm_ts/webview/utc_UIFW_elm_webview_events_feed_set_func.c
new file mode 100644 (file)
index 0000000..58a78ce
--- /dev/null
@@ -0,0 +1,103 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_webview_events_feed_set_func_01(void);
+static void utc_UIFW_elm_webview_events_feed_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_webview_events_feed_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_webview_events_feed_set_func_02, NEGATIVE_TC_IDX },
+};
+
+static void startup(void)
+{
+       tet_infoline("[[ TET_MSG ]]:: ============ Startup ============ ");
+       elm_init(0, NULL);
+       main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC);
+       evas_object_show(main_win);     
+}
+
+static void cleanup(void)
+{
+       if ( NULL != main_win ) {
+               evas_object_del(main_win);
+               main_win = NULL;
+       }
+       elm_shutdown();
+       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
+}
+
+/**
+ * @brief Positive test case of elm_webview_events_feed_set()
+ */
+static void utc_UIFW_elm_webview_events_feed_set_func_01(void)
+{
+       int r = 0;
+
+/*
+       r = elm_webview_events_feed_set(...);
+*/
+       if (!r) {
+               tet_infoline("elm_webview_events_feed_set() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_webview_events_feed_set()
+ */
+static void utc_UIFW_elm_webview_events_feed_set_func_02(void)
+{
+       int r = 0;
+
+/*
+       r = elm_webview_events_feed_set(...);
+*/
+       if (r) {
+               tet_infoline("elm_webview_events_feed_set() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/webview/utc_UIFW_elm_webview_minimap_get_func.c b/TC/elm_ts/webview/utc_UIFW_elm_webview_minimap_get_func.c
new file mode 100644 (file)
index 0000000..5977e10
--- /dev/null
@@ -0,0 +1,103 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_webview_minimap_get_func_01(void);
+static void utc_UIFW_elm_webview_minimap_get_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_webview_minimap_get_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_webview_minimap_get_func_02, NEGATIVE_TC_IDX },
+};
+
+static void startup(void)
+{
+       tet_infoline("[[ TET_MSG ]]:: ============ Startup ============ ");
+       elm_init(0, NULL);
+       main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC);
+       evas_object_show(main_win);     
+}
+
+static void cleanup(void)
+{
+       if ( NULL != main_win ) {
+               evas_object_del(main_win);
+               main_win = NULL;
+       }
+       elm_shutdown();
+       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
+}
+
+/**
+ * @brief Positive test case of elm_webview_minimap_get()
+ */
+static void utc_UIFW_elm_webview_minimap_get_func_01(void)
+{
+    Evas_Object *webview = NULL;
+    Evas_Object *minimap = NULL;
+    webview = elm_webview_add(main_win);
+
+       minimap = elm_webview_minimap_get(webview);
+       if (!r) {
+               tet_infoline("elm_webview_minimap_get() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+    evas_object_del(webview);
+    webview = NULL;
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_webview_minimap_get()
+ */
+static void utc_UIFW_elm_webview_minimap_get_func_02(void)
+{
+    Evas_Object *minimap = NULL;
+
+       minimap = elm_webview_minimap_get(NULL);
+       if (minimap) {
+               tet_infoline("elm_webview_minimap_get() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/webview/utc_UIFW_elm_webview_webkit_get_func.c b/TC/elm_ts/webview/utc_UIFW_elm_webview_webkit_get_func.c
new file mode 100644 (file)
index 0000000..dcaa921
--- /dev/null
@@ -0,0 +1,104 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_webview_webkit_get_func_01(void);
+static void utc_UIFW_elm_webview_webkit_get_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_webview_webkit_get_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_webview_webkit_get_func_02, NEGATIVE_TC_IDX },
+};
+
+static void startup(void)
+{
+       tet_infoline("[[ TET_MSG ]]:: ============ Startup ============ ");
+       elm_init(0, NULL);
+       main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC);
+       evas_object_show(main_win);     
+}
+
+static void cleanup(void)
+{
+       if ( NULL != main_win ) {
+               evas_object_del(main_win);
+               main_win = NULL;
+       }
+       elm_shutdown();
+       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
+}
+
+/**
+ * @brief Positive test case of elm_webview_webkit_get()
+ */
+static void utc_UIFW_elm_webview_webkit_get_func_01(void)
+{
+    Evas_Object *webview = NULL;
+    Evas_Object *webkit;
+    webview = elm_webview_add(main_win);
+
+    webkit = elm_webview_webkit_get(webview);
+       if (!webkit) {
+               tet_infoline("elm_webview_webkit_get() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+    evas_object_del(webview);
+    webview = NULL;
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_webview_webkit_get()
+ */
+static void utc_UIFW_elm_webview_webkit_get_func_02(void)
+{
+    Evas_Object *webkit;
+
+       webkit = elm_webview_webkit_get(NULL);
+
+       if (webkit) {
+               tet_infoline("elm_webview_webkit_get() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
index 620a809..7d83131 100644 (file)
@@ -5,6 +5,7 @@
 #include <Elementary.h>
 #include "elm_priv.h"
 
+#ifdef ELM_EWEBKIT
 /**
  * @defgroup WebView WebView
  * @ingroup Elementary
@@ -94,7 +95,6 @@ _layout(Evas_Object *o, Evas_Object_Box_Data *priv, void *data)
  *
  * @ingroup Box
  */
-#ifdef ELM_EWEBKIT
 EAPI Evas_Object *
 elm_webview_add(Evas_Object *parent, Eina_Bool tiled)
 {
@@ -134,7 +134,7 @@ EAPI Evas_Object *
 elm_webview_webkit_get(Evas_Object *obj)
 {
    Widget_Data *wd = elm_widget_data_get(obj);
-   if (!wd) return;
+   if (!wd) return NULL;
    return wd->webkit;
 }
 
@@ -174,7 +174,7 @@ EAPI Evas_Object *
 elm_webview_minimap_get(Evas_Object *obj)
 {
    Widget_Data *wd = elm_widget_data_get(obj);
-   if (!wd) return EINA_FALSE;
+   if (!wd) return NULL;
    return _elm_smart_webview_minimap_get(wd->webkit);
 }