Merge "Add ApplyCustomFragmentPrefix" into devel/master
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-toolkit / utc-Dali-ImageUrl.cpp
1 /*
2  * Copyright (c) 2021 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 <iostream>
18 #include <stdlib.h>
19 #include <dali-toolkit-test-suite-utils.h>
20 #include <dali-toolkit/public-api/image-loader/image-url.h>
21
22 using namespace Dali;
23 using namespace Dali::Toolkit;
24
25 int UtcImageUrlConstructor(void)
26 {
27   ToolkitTestApplication application;
28
29   tet_infoline(" UtcImageUrlValid ");
30
31   // Test default constructor.
32   ImageUrl imageUrl;
33   DALI_TEST_CHECK( !imageUrl );
34
35   // Test object creation
36   Texture image = Texture::New(TextureType::TEXTURE_2D, Pixel::RGBA8888, 4u, 4u); // test texture
37   imageUrl = ImageUrl::New(image);
38   DALI_TEST_CHECK( imageUrl );
39
40   // Test copy constructor
41   ImageUrl ImageUrlCopy( imageUrl );
42   DALI_TEST_CHECK( ImageUrlCopy );
43
44   // Test down cast
45   BaseHandle baseUrl;
46   baseUrl = imageUrl;
47   ImageUrl downcastUrl = ImageUrl::DownCast( baseUrl );
48   DALI_TEST_CHECK( downcastUrl );
49   END_TEST;
50 }