[dali_1.4.21] Merge branch 'devel/master'
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-toolkit / dali-toolkit-test-utils / test-application.h
1 #ifndef DALI_TEST_APPLICATION_H
2 #define DALI_TEST_APPLICATION_H
3
4 /*
5  * Copyright (c) 2019 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // INTERNAL INCLUDES
22 #include <test-platform-abstraction.h>
23 #include "test-gl-sync-abstraction.h"
24 #include "test-gl-abstraction.h"
25 #include "test-render-controller.h"
26 #include "test-render-surface.h"
27 #include <dali/public-api/common/dali-common.h>
28 #include <dali/integration-api/resource-policies.h>
29 #include <dali/integration-api/trace.h>
30 #include <dali/integration-api/scene.h>
31
32 namespace Dali
33 {
34
35 class DALI_CORE_API TestApplication : public ConnectionTracker
36 {
37 public:
38
39   // Default values derived from H2 device.
40   static const uint32_t DEFAULT_SURFACE_WIDTH = 480;
41   static const uint32_t DEFAULT_SURFACE_HEIGHT = 800;
42
43 #ifdef _CPP11
44   static constexpr uint32_t DEFAULT_HORIZONTAL_DPI = 220;
45   static constexpr uint32_t DEFAULT_VERTICAL_DPI   = 217;
46 #else
47   static const uint32_t DEFAULT_HORIZONTAL_DPI = 220;
48   static const uint32_t DEFAULT_VERTICAL_DPI   = 217;
49 #endif
50
51   static const uint32_t DEFAULT_RENDER_INTERVAL = 1;
52
53   static const uint32_t RENDER_FRAME_INTERVAL = 16;
54
55   TestApplication( uint32_t surfaceWidth  = DEFAULT_SURFACE_WIDTH,
56                    uint32_t surfaceHeight = DEFAULT_SURFACE_HEIGHT,
57                    uint32_t horizontalDpi = DEFAULT_HORIZONTAL_DPI,
58                    uint32_t verticalDpi   = DEFAULT_VERTICAL_DPI,
59                    ResourcePolicy::DataRetention policy = ResourcePolicy::DALI_DISCARDS_ALL_DATA);
60
61   void Initialize();
62   virtual ~TestApplication();
63   static void LogMessage( Dali::Integration::Log::DebugPriority level, std::string& message );
64   static void LogContext( bool start, const char* tag );
65   Dali::Integration::Core& GetCore();
66   TestPlatformAbstraction& GetPlatform();
67   TestRenderController& GetRenderController();
68   TestGlAbstraction& GetGlAbstraction();
69   TestGlSyncAbstraction& GetGlSyncAbstraction();
70   void ProcessEvent(const Integration::Event& event);
71   void SendNotification();
72   bool Render( uint32_t intervalMilliseconds = DEFAULT_RENDER_INTERVAL, const char* location=NULL );
73   uint32_t GetUpdateStatus();
74   bool UpdateOnly( uint32_t intervalMilliseconds = DEFAULT_RENDER_INTERVAL );
75   bool RenderOnly( );
76   void ResetContext();
77   bool GetRenderNeedsUpdate();
78   uint32_t Wait( uint32_t durationToWait );
79   static void EnableLogging( bool enabled )
80   {
81     mLoggingEnabled = enabled;
82   }
83
84   Integration::Scene GetScene() const
85   {
86     return mScene;
87   }
88
89 private:
90   void DoUpdate( uint32_t intervalMilliseconds, const char* location=NULL );
91
92 protected:
93   TestPlatformAbstraction   mPlatformAbstraction;
94   TestRenderController      mRenderController;
95   TestGlAbstraction         mGlAbstraction;
96   TestGlSyncAbstraction     mGlSyncAbstraction;
97   TestRenderSurface*        mRenderSurface;
98
99   Integration::UpdateStatus mStatus;
100   Integration::RenderStatus mRenderStatus;
101
102   Integration::Core* mCore;
103   Dali::Integration::Scene mScene;
104
105   uint32_t mSurfaceWidth;
106   uint32_t mSurfaceHeight;
107   uint32_t mFrame;
108
109   struct { uint32_t x; uint32_t y; } mDpi;
110   uint32_t mLastVSyncTime;
111   ResourcePolicy::DataRetention mDataRetentionPolicy;
112   static bool mLoggingEnabled;
113 };
114
115 } // Dali
116
117 #endif // DALI_TEST_APPLICATION_H