Introduce to a project aurum accepted/tizen/unified/20191213.115146 submit/tizen/20191211.080758 submit/tizen_5.5/20191212.063236
authorWonki Kim <wonki_.kim@samsung.com>
Thu, 4 Jul 2019 08:34:17 +0000 (17:34 +0900)
committerWonki Kim <wonki_.kim@samsung.com>
Wed, 11 Dec 2019 08:02:57 +0000 (17:02 +0900)
commit77db7ecec069a7909012325edad32e5664ec1979
treec754ed6871f3994b0457ff3da1fbb3257ec13ccd
Introduce to a project aurum

This commit introduces a project which has designed for
Automation framework for Ui testing,
Au{79},
Aurum.

Change-Id: I3407b40d4e5340f88fac170c9bb278356a236d4c
118 files changed:
.clang-format [new file with mode: 0644]
.gitignore [new file with mode: 0644]
.gitmodules [new file with mode: 0644]
AUTHORS [new file with mode: 0644]
COPYING [new file with mode: 0644]
NOTICE [new file with mode: 0644]
bootstrap/meson.build [new file with mode: 0644]
bootstrap/server/aurum-bootstrap.service [new file with mode: 0644]
bootstrap/server/inc/AurumServiceImpl.h [new file with mode: 0644]
bootstrap/server/inc/Commands/ClearCommand.h [new file with mode: 0644]
bootstrap/server/inc/Commands/ClickCommand.h [new file with mode: 0644]
bootstrap/server/inc/Commands/CloseAppCommand.h [new file with mode: 0644]
bootstrap/server/inc/Commands/Command.h [new file with mode: 0644]
bootstrap/server/inc/Commands/Commands.h [new file with mode: 0644]
bootstrap/server/inc/Commands/FindElementCommand.h [new file with mode: 0644]
bootstrap/server/inc/Commands/FlickCommand.h [new file with mode: 0644]
bootstrap/server/inc/Commands/GetAppInfoCommand.h [new file with mode: 0644]
bootstrap/server/inc/Commands/GetAttributeCommand.h [new file with mode: 0644]
bootstrap/server/inc/Commands/GetDeviceTimeCommand.h [new file with mode: 0644]
bootstrap/server/inc/Commands/GetLocationCommand.h [new file with mode: 0644]
bootstrap/server/inc/Commands/GetSizeCommand.h [new file with mode: 0644]
bootstrap/server/inc/Commands/GetValueCommand.h [new file with mode: 0644]
bootstrap/server/inc/Commands/InstallAppCommand.h [new file with mode: 0644]
bootstrap/server/inc/Commands/KillServerCommand.h [new file with mode: 0644]
bootstrap/server/inc/Commands/LaunchAppCommand.h [new file with mode: 0644]
bootstrap/server/inc/Commands/LongClickCommand.h [new file with mode: 0644]
bootstrap/server/inc/Commands/PostCommand.h [new file with mode: 0644]
bootstrap/server/inc/Commands/PreCommand.h [new file with mode: 0644]
bootstrap/server/inc/Commands/RemoveAppCommand.h [new file with mode: 0644]
bootstrap/server/inc/Commands/SendKeyCommand.h [new file with mode: 0644]
bootstrap/server/inc/Commands/SetValueCommand.h [new file with mode: 0644]
bootstrap/server/inc/Commands/SyncCommand.h [new file with mode: 0644]
bootstrap/server/inc/Commands/TouchDownCommand.h [new file with mode: 0644]
bootstrap/server/inc/Commands/TouchMoveCommand.h [new file with mode: 0644]
bootstrap/server/inc/Commands/TouchUpCommand.h [new file with mode: 0644]
bootstrap/server/inc/ObjectMapper.h [new file with mode: 0644]
bootstrap/server/meson.build [new file with mode: 0644]
bootstrap/server/src/AurumServiceImpl.cc [new file with mode: 0644]
bootstrap/server/src/BootstrapServer.cc [new file with mode: 0644]
bootstrap/server/src/Commands/ClearCommand.cc [new file with mode: 0644]
bootstrap/server/src/Commands/ClickCommand.cc [new file with mode: 0644]
bootstrap/server/src/Commands/CloseAppCommand.cc [new file with mode: 0644]
bootstrap/server/src/Commands/Command.cc [new file with mode: 0644]
bootstrap/server/src/Commands/FindElementCommand.cc [new file with mode: 0644]
bootstrap/server/src/Commands/FlickCommand.cc [new file with mode: 0644]
bootstrap/server/src/Commands/GetAppInfoCommand.cc [new file with mode: 0644]
bootstrap/server/src/Commands/GetAttributeCommand.cc [new file with mode: 0644]
bootstrap/server/src/Commands/GetDeviceTimeCommand.cc [new file with mode: 0644]
bootstrap/server/src/Commands/GetLocationCommand.cc [new file with mode: 0644]
bootstrap/server/src/Commands/GetSizeCommand.cc [new file with mode: 0644]
bootstrap/server/src/Commands/GetValueCommand.cc [new file with mode: 0644]
bootstrap/server/src/Commands/InstallAppCommand.cc [new file with mode: 0644]
bootstrap/server/src/Commands/KillServerCommand.cc [new file with mode: 0644]
bootstrap/server/src/Commands/LaunchAppCommand.cc [new file with mode: 0644]
bootstrap/server/src/Commands/LongClickCommand.cc [new file with mode: 0644]
bootstrap/server/src/Commands/PostCommand.cc [new file with mode: 0644]
bootstrap/server/src/Commands/PreCommand.cc [new file with mode: 0644]
bootstrap/server/src/Commands/RemoveAppCommand.cc [new file with mode: 0644]
bootstrap/server/src/Commands/SendKeyCommand.cc [new file with mode: 0644]
bootstrap/server/src/Commands/SetValueCommand.cc [new file with mode: 0644]
bootstrap/server/src/Commands/SyncCommand.cc [new file with mode: 0644]
bootstrap/server/src/Commands/TouchDownCommand.cc [new file with mode: 0644]
bootstrap/server/src/Commands/TouchMoveCommand.cc [new file with mode: 0644]
bootstrap/server/src/Commands/TouchUpCommand.cc [new file with mode: 0644]
bootstrap/server/src/ObjectMapper.cc [new file with mode: 0644]
libaurum/inc/Accessible.h [new file with mode: 0644]
libaurum/inc/AccessibleNode.h [new file with mode: 0644]
libaurum/inc/Comparer.h [new file with mode: 0644]
libaurum/inc/DeviceImpl/TM1Impl.h [new file with mode: 0644]
libaurum/inc/IDevice.h [new file with mode: 0644]
libaurum/inc/ISearchable.h [new file with mode: 0644]
libaurum/inc/PartialMatch.h [new file with mode: 0644]
libaurum/inc/Sel.h [new file with mode: 0644]
libaurum/inc/UiDevice.h [new file with mode: 0644]
libaurum/inc/UiObject.h [new file with mode: 0644]
libaurum/inc/UiSelector.h [new file with mode: 0644]
libaurum/inc/Until.h [new file with mode: 0644]
libaurum/inc/Waiter.h [new file with mode: 0644]
libaurum/meson.build [new file with mode: 0644]
libaurum/src/Accessible.cc [new file with mode: 0644]
libaurum/src/AccessibleNode.cc [new file with mode: 0644]
libaurum/src/Comparer.cc [new file with mode: 0644]
libaurum/src/DeviceImpl/TM1Impl.cc [new file with mode: 0644]
libaurum/src/PartialMatch.cc [new file with mode: 0644]
libaurum/src/Sel.cc [new file with mode: 0644]
libaurum/src/UiDevice.cc [new file with mode: 0644]
libaurum/src/UiObject.cc [new file with mode: 0644]
libaurum/src/UiSelector.cc [new file with mode: 0644]
libaurum/src/Until.cc [new file with mode: 0644]
libaurum/src/Waiter.cc [new file with mode: 0644]
libloguru/inc/loguru.hpp [new file with mode: 0644]
libloguru/meson.build [new file with mode: 0644]
libloguru/src/loguru.cpp [new file with mode: 0644]
meson.build [new file with mode: 0644]
meson_options.txt [new file with mode: 0644]
misc/down_grpc.sh [new file with mode: 0755]
misc/env.sh [new file with mode: 0644]
misc/setup_device.sh [new file with mode: 0755]
packaging/aurum.manifest [new file with mode: 0644]
packaging/aurum.spec [new file with mode: 0644]
protocol/aurum.proto [new file with mode: 0644]
protocol/empty.cpp [new file with mode: 0644]
protocol/examples/node/README [new file with mode: 0644]
protocol/examples/node/client.js [new file with mode: 0644]
protocol/examples/node/gen.sh [new file with mode: 0755]
protocol/examples/node/package-lock.json [new file with mode: 0644]
protocol/examples/node/package.json [new file with mode: 0644]
protocol/examples/python/README [new file with mode: 0644]
protocol/examples/python/gen.sh [new file with mode: 0755]
protocol/examples/python/killServer.py [new file with mode: 0644]
protocol/examples/python/org.tizen.uicomponents.arm.tpk [new file with mode: 0644]
protocol/examples/python/requirements.txt [new file with mode: 0644]
protocol/examples/python/sample01.py [new file with mode: 0644]
protocol/examples/python/sample02.py [new file with mode: 0644]
protocol/examples/python/sample03.py [new file with mode: 0644]
protocol/meson.build [new file with mode: 0644]
tests/meson.build [new file with mode: 0644]
tests/ua_test.cpp [new file with mode: 0644]