Project

General

Profile

coordination #36712

Updated by okurz almost 6 years ago

## Motivation 
 Outcome of https://hackweek.suse.com/16/projects/make-yast-testing-independent-of-keyboard-shortcuts 

 YaST already has mechanism which may help us to develop more scalable tests using widget IDs instead of needles. 

 Some parts got broken meanwhile and even simple installation doesn't work when just clicking next. 
 Idea is to automate one test suite which we already have in openQA and evaluate if it is faster/scalable/easier to maintain/etc.  
 One of candidates can be yast2_gui/yast2_hostnames.pm . It will require improvements in widgets handling that we can select rows in the table. 

 ## Acceptance criteria 
 * **AC1:** 1. Simple YaST module test is automated using YCP framework 

 ## Conclusion copied: 
 Conclusion and future steps 

 Defined goal was reached, pop-up approached was implemented and integrated with openqa to prove the concept. Here is link to the branch with changes: os-autoinst-distri-opensuse During the project I've learned more about yast gui internals. This functionality can be used in the tests with constantly changing keyboard hotkeys in first place. 

 After seeing this possibility to have more stable tests using yast gui internals, we can use advantage of it and stop relying on needles and keyboard shortcuts. After that I was introduced to YCP functionality which is there for a long time and already has a recorder and a player. Documentation for the Yast Programming language can be found here. This functionality can be used for testing and already contains the functionality to read widget properties and set them, as well as interact with them simulating user input. 

 YCP macro can be executed when application is started by simply calling: /usr/lib/YaST2/bin/y2base ./HelloWorld.rb qt --macro macro.ycp Or, it can be also called during the run using ctrl-alt-shift-p key combination and then selecting ycp file. 

 This part makes it possible to operate on lower level and hence make automated tests more stable and scalable. 
 Pros 

 

     * Usage of widget IDs allows to write tests which are resistant to fonts and layout changes 
 
     * Usage of YCP allows to avoid syncronization issues (when some control is not yet shown, but we try to act on it) 
 
     * YCP allows to avoid send keys problems we experience in openQA 
 
     * Reduced execution time as we are able to set controls property to certain value instead of typing 
 
     * Macro recorder allows to partly reduce test code development 
 
     * Tests developed in this way can be easily executed by developers and significantly reduce feedback cycle 
 
     * Can be combined with needle matching approach 
 
     * Easy migration to the solution (e.g. only newly or unstable developed tests are developed using YCP) 

 Cons 

 

     * Learning curve for test developers 
 
     * Missing functionality and requires further development (e.g. not possible to verify values in the table or select row with certain cell) 
 
     * Unstable behavior if used with installer (unfortunately due to some bugs installer may crash during macro execution, some trivial actions like pressing button may not work if change installers page, etc.) 
 
     * Missing openQA integration (even though it's easy to run such a test, and log errors in y2log file, the results won't be parsed and displayed in friendly way on the dashboard) 
 
     * Works only with Yast GUI, so usage scope is limited 

 All the disadvantages are mainly caused by the fact that YCP is not widely used, but that can be solved with reasonable time investment. In order to prove benefits of the solution we could implement one of unstable tests using YCP and run them in parallel to calculate time spent on maintenance of both solutions.

Back