diff options
author | zheng_wenlong <wenlong_zheng@nexty-ele.com> | 2018-07-10 18:11:51 +0900 |
---|---|---|
committer | zheng_wenlong <wenlong_zheng@nexty-ele.com> | 2018-07-10 18:21:05 +0900 |
commit | 85392e71f90a0322fdc08359ef1d829cdcf67381 (patch) | |
tree | dfe40b0d945a671af3a9dd60b691cef6a664ad46 /test/commandlinetests.txt | |
parent | 69be38c5d975c96eee7adab238ffd608b99d8514 (diff) |
Copy source code from homescreen-2017flounder_5.99.2flounder/5.99.25.99.2
We decide to use homescreen instead of homescreen-2017.
Copy the source code from homescreen-2017 and delete word "-2017".
Revision: b4db06287bc997ded71deab50ff0ff5889b09e1f
Bug-AGL: SPEC-1549
Change-Id: Id77226b7ce35bbc29c868281c37b76ea3f930ad5
Signed-off-by: zheng_wenlong <wenlong_zheng@nexty-ele.com>
Diffstat (limited to 'test/commandlinetests.txt')
-rw-r--r-- | test/commandlinetests.txt | 150 |
1 files changed, 0 insertions, 150 deletions
diff --git a/test/commandlinetests.txt b/test/commandlinetests.txt deleted file mode 100644 index 428b1ca..0000000 --- a/test/commandlinetests.txt +++ /dev/null @@ -1,150 +0,0 @@ -Command line tests - -Precondition for all test is, that the D-Bus session is launched: -$export `dbus-launch` - ---------------------------------------------------------------------------------------------------------------------- -Interface: -org.agl.daynightmode - -Signal: - <signal name="dayNightMode"> - <arg name="mode" type="i" direction="out"/> - </signal> - -Preconditions: -- HomeScreen app is running - -Test: -no command line test available right now - ---------------------------------------------------------------------------------------------------------------------- -Interface: -org.agl.homescreen - -Method: - <method name="hardKeyPressed"> - <arg name="key" type="i" direction="in"/> <!-- using the inputevent.hpp InputEvent::HardKey type --> - </method> - -Preconditions: -- HomeScreen app is running - -Test: -$dbus-send --session --type=method_call --print-reply --dest=org.agl.homescreen /HomeScreen org.agl.homescreen.hardKeyPressed int32:0 - -Method: - <method name="setToFullscreen"> - <arg name="pid" type="i" direction="in"/> - </method> - -$dbus-send --session --type=method_call --print-reply --dest=org.agl.homescreen /HomeScreen org.agl.homescreen.setToFullscreen int32:0 - ---------------------------------------------------------------------------------------------------------------------- -Interface: -org.agl.popup - -Method: - <method name="showPopup"> - <arg name="type" type="i" direction="in"/> - <arg name="text" type="s" direction="in"/> - </method> - -Preconditions: -- HomeScreen app is running - -Test: -$dbus-send --session --type=method_call --dest=org.agl.homescreen /Popup org.agl.popup.showPopup int32:1 string:"TEST" - -Method: - <method name="showPopupComboBox"> - <arg name="text" type="s" direction="in"/> - <arg name="choices" type="as" direction="in"/> - </method> - -Preconditions: -- HomeScreen app is running - -Test: -$dbus-send --session --type=method_call --dest=org.agl.homescreen /Popup org.agl.popup.showPopupComboBox string:"TEST" array:string:"test1","test2" - ---------------------------------------------------------------------------------------------------------------------- -Interface: -org.agl.proximity - -Method: - <method name="setObjectDetected"> - <arg name="detected" type="b" direction="in"/> - </method> - -Preconditions: -- HomeScreen app is running - -Test: -$dbus-send --session --type=method_call --dest=org.agl.homescreen /Proximity org.agl.proximity.setObjectDetected boolean:true - ---------------------------------------------------------------------------------------------------------------------- -Interface: -org.agl.statusbar - -Method: - <method name="getAvailablePlaceholders"> - <arg name="placeholderIndexes" type="ai" direction="out"/> - <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QList<int>"/> - </method> - -Preconditions: -- HomeScreen app is running - -Test: -$dbus-send --session --type=method_call --print-reply --dest=org.agl.homescreen /StatusBar org.agl.statusbar.getAvailablePlaceholders - -Method: - <method name="getStatusText"> - <arg name="placeholderIndex" type="i" direction="in"/> - <arg name="text" type="s" direction="out"/> - </method> - -Preconditions: -- HomeScreen app is running - -Test: -$dbus-send --session --type=method_call --print-reply --dest=org.agl.homescreen /StatusBar org.agl.statusbar.getStatusText int32:1 - -Method: - <method name="getStatusIcon"> - <arg name="placeholderIndex" type="i" direction="in"/> - <arg name="iconURI" type="s" direction="out"/> - </method> - -Preconditions: -- HomeScreen app is running - -Test: -$dbus-send --session --type=method_call --print-reply --dest=org.agl.homescreen /StatusBar org.agl.statusbar.getStatusIcon int32:1 - -Method: - <method name="setStatusText"> - <arg name="placeholderIndex" type="i" direction="in"/> - <arg name="text" type="s" direction="in"/> - </method> - -Preconditions: -- HomeScreen app is running - -Test: -$dbus-send --session --type=method_call --print-reply --dest=org.agl.homescreen /StatusBar org.agl.statusbar.setStatusText int32:1 string:"Test1" - -Method: - <method name="setStatusIcon"> - <arg name="placeholderIndex" type="i" direction="in"/> - <arg name="iconURI" type="s" direction="in"/> - </method> - -Preconditions: -- HomeScreen app is running - -Test: -$dbus-send --session --type=method_call --print-reply --dest=org.agl.homescreen /StatusBar org.agl.statusbar.setStatusIcon int32:1 string:"<path to png file here>" - - |