c5c58e31ec148c9417eaa781d8f734c8f1d4ea75
[test/generic/wayland-fits.git] / src / test / efl / test_colorselector.cpp
1 /*
2  * Copyright © 2013 Intel Corporation
3  *
4  * Permission to use, copy, modify, distribute, and sell this software and
5  * its documentation for any purpose is hereby granted without fee, provided
6  * that the above copyright notice appear in all copies and that both that
7  * copyright notice and this permission notice appear in supporting
8  * documentation, and that the name of the copyright holders not be used in
9  * advertising or publicity pertaining to distribution of the software
10  * without specific, written prior permission.  The copyright holders make
11  * no representations about the suitability of this software for any
12  * purpose.  It is provided "as is" without express or implied warranty.
13  *
14  * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
15  * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
16  * FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
17  * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
18  * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
19  * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
20  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
21  */
22
23 #include <Elementary.h>
24 #include <boost/bind.hpp>
25
26 #include "window.h"
27
28 #include "elmtestharness.h"
29
30 class ColorselectorColorTest : public ElmTestHarness
31 {
32 public:
33         ColorselectorColorTest()
34                 : ElmTestHarness::ElmTestHarness()
35                 , window_("ColorselectorColorTest", "Colorselector Color Test")
36                 , selector_(elm_colorselector_add(window_))
37         {
38                 window_.setSize(800, 600);
39         }
40
41         void setup()
42         {
43                 selector_.show();
44                 window_.show();
45
46                 queueStep(boost::bind(elm_colorselector_color_set, boost::ref(selector_), 64, 64, 64, 0));
47                 queueStep(boost::bind(&ColorselectorColorTest::checkColor, boost::ref(*this), 64, 64, 64, 0));
48         }
49
50         void checkColor(const int r, const int g, const int b, const int a)
51         {
52                 int red = 0, green = 0, blue = 0, alpha = 0;
53                 elm_colorselector_color_get(selector_, &red, &green, &blue, &alpha);
54
55                 FAIL_UNLESS(r == red && g == green && b == blue && a == alpha);
56         }
57
58 private:
59         Window          window_;
60         EvasObject      selector_;
61 };
62
63 WAYLAND_ELM_HARNESS_TEST_CASE(ColorselectorColorTest, "ColorSelector")