Merge "Unparents internalRoot actor when gaussian-blur-view is deactived." into devel...
[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) 2020 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-gl-context-helper-abstraction.h"
26 #include "test-render-controller.h"
27 #include "test-render-surface.h"
28 #include <dali/public-api/common/dali-common.h>
29 #include <dali/integration-api/resource-policies.h>
30 #include <dali/integration-api/trace.h>
31 #include <dali/integration-api/scene.h>
32
33 namespace Dali
34 {
35
36 class DALI_CORE_API TestApplication : public ConnectionTracker
37 {
38 public:
39
40   // Default values derived from H2 device.
41   static const uint32_t DEFAULT_SURFACE_WIDTH = 480;
42   static const uint32_t DEFAULT_SURFACE_HEIGHT = 800;
43
44   static constexpr uint32_t DEFAULT_HORIZONTAL_DPI = 220;
45   static constexpr uint32_t DEFAULT_VERTICAL_DPI   = 217;
46
47   static const uint32_t DEFAULT_RENDER_INTERVAL = 1;
48
49   static const uint32_t RENDER_FRAME_INTERVAL = 16;
50
51   TestApplication( uint32_t surfaceWidth  = DEFAULT_SURFACE_WIDTH,
52                    uint32_t surfaceHeight = DEFAULT_SURFACE_HEIGHT,
53                    uint32_t horizontalDpi = DEFAULT_HORIZONTAL_DPI,
54                    uint32_t verticalDpi   = DEFAULT_VERTICAL_DPI,
55                    bool initialize = true );
56
57   void Initialize();
58   void CreateCore();
59   void CreateScene();
60   void InitializeCore();
61   virtual ~TestApplication();
62   static void LogMessage( Dali::Integration::Log::DebugPriority level, std::string& message );
63   static void LogContext( bool start, const char* tag );
64   Dali::Integration::Core& GetCore();
65   TestPlatformAbstraction& GetPlatform();
66   TestRenderController& GetRenderController();
67   TestGlAbstraction& GetGlAbstraction();
68   TestGlSyncAbstraction& GetGlSyncAbstraction();
69   TestGlContextHelperAbstraction& GetGlContextHelperAbstraction();
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   TestGlContextHelperAbstraction mGlContextHelperAbstraction;
98   TestRenderSurface*        mRenderSurface;
99
100   Integration::UpdateStatus mStatus;
101   Integration::RenderStatus mRenderStatus;
102
103   Integration::Core* mCore;
104   Dali::Integration::Scene mScene;
105
106   uint32_t mSurfaceWidth;
107   uint32_t mSurfaceHeight;
108   uint32_t mFrame;
109
110   struct { uint32_t x; uint32_t y; } mDpi;
111   uint32_t mLastVSyncTime;
112   static bool mLoggingEnabled;
113 };
114
115 } // Dali
116
117 #endif // DALI_TEST_APPLICATION_H