[dali_2.3.20] Merge branch 'devel/master'
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-toolkit / utc-Dali-ImageUrl.cpp
1 /*
2  * Copyright (c) 2022 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <stdlib.h>
18 #include <iostream>
19
20 #include <dali-toolkit-test-suite-utils.h>
21
22 #include <dali-toolkit/public-api/image-loader/image-url.h>
23
24 using namespace Dali;
25 using namespace Dali::Toolkit;
26
27 int UtcImageUrlConstructor(void)
28 {
29   ToolkitTestApplication application;
30
31   tet_infoline(" UtcImageUrlValid ");
32
33   // Test default constructor.
34   ImageUrl imageUrl;
35   DALI_TEST_CHECK(!imageUrl);
36
37   // Test object creation
38   Texture image = Texture::New(TextureType::TEXTURE_2D, Pixel::RGBA8888, 4u, 4u); // test texture
39   imageUrl      = ImageUrl::New(image);
40   DALI_TEST_CHECK(imageUrl);
41
42   // Test copy constructor
43   ImageUrl ImageUrlCopy(imageUrl);
44   DALI_TEST_CHECK(ImageUrlCopy);
45
46   // Test down cast
47   BaseHandle baseUrl;
48   baseUrl              = imageUrl;
49   ImageUrl downcastUrl = ImageUrl::DownCast(baseUrl);
50   DALI_TEST_CHECK(downcastUrl);
51   END_TEST;
52 }