Qt Creator ManualTests QtQuick: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
(Update: QML errors can appear at compile time or at run time)
 
(36 intermediate revisions by 5 users not shown)
Line 2: Line 2:


{| class="wikitable"
{| class="wikitable"
|+ QML Editor
|+QML Editor
! Test  
!Test
! Result  
!Result
! Annotation  
!Annotation  
|+
|+
| Open Qml files, make them invalid & again valid, check that errors are underlined
|Open Qml files, make them invalid & again valid, check that errors are underlined
|
|
|
|
|+
|+
| Indent a big Qml file via "Ctrl-I"
|Indent a big Qml file via "Ctrl-I"
| automated
|automated
|
|
|+
|+
| Hover over elements, properties, expressions
|Hover over elements, properties, expressions
| automated
|automated
|
|
|+
|+
| Rename an ID via context menu
|Rename an ID via context menu
| automated
|automated
|
|
|+
|+
| Trigger Find Usages on an id and property
|Trigger Find Usages on an id and property
| automated
|automated
|
|
|}
|}


{| class="wikitable"
{| class="wikitable"
|+ Outline (sidebar)
|+Outline (sidebar)
! Test  
!Test
! Result  
!Result
! Annotation  
!Annotation  
|+
|+
| Navigate to elements / properties by clicking on the item in the outline
|Navigate to elements / properties by clicking on the item in the outline
|
|
|
|
|+
|+
| Change qml in text, check that Outline updates
|Change qml in text, check that Outline updates
| automated: tst_qml_outline
|automated: tst_qml_outline
|
|
|+
|+
| Drag&Drop elements around in outline, check that text updates
|Drag&Drop elements around in outline, check that text updates
|
|
|
|Has been broken for a while. If it works again, please comment on [https://bugreports.qt.io/browse/QTCREATORBUG-26391 QTCREATORBUG-26391].
|+
|+
| Check/Uncheck 'Show all Bindings' in the Filter, outline should update accordingly
|Check/Uncheck 'Show all Bindings' in the Filter, outline should update accordingly
|
|
|
|
Line 52: Line 52:


{| class="wikitable"
{| class="wikitable"
|+ Qt Quick Wizards
|+Qt Quick Wizards
! Test  
!Test
! Result  
!Result
! Annotation  
!Annotation  
|+
|+
| Create new "Qt Quick Application" through wizard, run application
|Create new "Qt Quick Application" through wizard, run application
| automated
|automated
|
|-
|Create new "Qt Quick Application (compat)" through wizard, run application
|
|
|+
| Create new "Qt Quick UI" through wizard, run application
| automated
|
|
|+
|+
| Generate "Qt Quick 1/2 Extension Plugin", compile
|Create new "Qt Quick UI Prototype" through wizard, run application
| automated
|automated
|
|
|}
{| class="wikitable"
|+ Application Output
! Test
! Result
! Annotation
|+
|+
| QML errors:
|Generate "Qt Quick 2 Extension Plugin", compile
# Create a hybrid QML/C++ project (Qt Quick Application). In Projects mode, leave "Shadow build" checked.
|automated
# Add errors to the qml file.
# Save and close the file.
# Run this project on the desktop.
Are the error messages in Application Output clickable when running the app? Do they open the "right", file (not in shadow build)?
|
|
|
|}
|}


{| class="wikitable"
{| class="wikitable"
|+ Qt Quick Designer
|+JavaScript Debugging
! Test  
!Test
! Result  
!Result
! Annotation  
!Annotation  
|+
| Open all files in $CREATORDIR/tests/manual/qml/testfiles/testfiles.qmlproject and $CREATORDIR/tests/manual/qml/testfiles_quick2/testfiles_quick2.qmlproject and check whether:
* previews look sane
* the Properties editor works for different item types
* changes in the Designer cause correct changes to the QML source
|
|
|+
| Create & Rename & Delete states
|
|
|+
| Open project $CREATORDIR/tests/manual/qml/testprojects/plugins/plugins.qmlproject and see whether the Designer treats MyComponent and MyComponent2 correctly
|
|
|+
|+
| Test whether F1 works
|Preparation:
|
|
|}


{| class="wikitable"
#Open samegame.qmlproject from Qt's repository.<br />It's in qtdoc/examples/demos/samegame (https://code.qt.io/cgit/qt/qtdoc.git/)
|+ JavaScript Debugging
#Place a breakpoint at the first line of the startNewGame() function (samegame.js) which contains executable code (i.e. not (only) a comment).
! Test
#Start debugging app
! Result
! Annotation
|+
| Preparation:
# Open qtdeclarative/examples/quick/demos/samegame/samegame.qmlproject from Qt5's repository.
# Place a breakpoint at the first line of the startNewGame() function (samegame.js) which contains executable code (i.e. not (only) a comment).
# Start debugging app
|
|
|
|
|+
|+
| Check that first breakpoint is hit when clicking on "New game" , and that the breakpoint looses it's 'hour glass' when hit
|Check that the breakpoint is being hit when clicking on "1 Player", and that the breakpoint loses it's 'hour glass' when hit.
|
|
|
|
|+
|+
| Step through startNewGame() function. Check Locals and Watchers update. Also try adding watchers, and change content in locals & watchers. (Needs Qt >= 5.4)
|Step through startNewGame() function. Check Locals and Expressions update. Also try adding Expression Evaluators, and change content in Locals and Expressions.
|
|
|
|
|+
|+
| Add breakpoint while debugging QML. Does the breakpoint interrupt the program?
|Add breakpoint while debugging QML. Does the breakpoint interrupt the program?
|
|
|
|
|+
|+
| Add breakpoint before starting QML Debugger. Does the breakpoint interrupt the program?
|Add breakpoint before starting QML Debugger. Does the breakpoint interrupt the program?
|
|
|
|
|+
|+
| While interrupted in a javascript method (with more than one line), step over. Does it go to the next line?
|While interrupted in a javascript method (with more than one line), step over. Does it go to the next line?
|
|
|
|
|+
|+
| While interrupted in a javascript method that calls another javascript method, step into. Does it enter that method's definition?
|While interrupted in a javascript method that calls another javascript method, step into. Does it enter that method's definition?
|
|
|
|
|+
|+
| While interrupted in a javascript method, step out. Does execution resume again (or does debugger go back in context)?
|While interrupted in a javascript method, step out. Does execution resume again (or does debugger go back in context)?
|
|
|
|
Line 155: Line 118:


{| class="wikitable"
{| class="wikitable"
|+ Mixed Qml/JavaScript Debugging
|+Mixed Qml/JavaScript Debugging
! Test  
!Test
! Result  
!Result
! Annotation  
!Annotation  
|+
|+
| Breakpoints:
|Breakpoints:
# Create a hybrid QML/C++ project (Qt Quick Application). Leave shadow build on.
 
# Select a Qt Version >= 4.8.0.
#Create a "Qt Quick Application (compat)" project.
# Check that 'Enable QML debugging' is checked in qmake step on the Build configuration page.
#Make sure in Projects mode that you don't build the project in the source directory.
# Rebuild.
#Check that "QML debugging and profiling" is enabled in Build Settings.
# Make sure "C++" and "QML" Debugging under "Debugger Settings" are enabled in Run Settings.
#Rebuild.
# Place a breakpoint in main.cpp, before QApplication object is constructed.
#Make sure "C++" and "QML" Debugging under "Debugger Settings" are enabled in Run Settings.
# Place a breakpoint in the onClicked or onTriggered handler in main.qml.
#Place a breakpoint in main.cpp, before Q(Gui)Application object is constructed.
# Start debugging the project.
#Add a signal handler to main.qml, e.g:<pre>onWidthChanged: console.log("Hello World!")</pre>
Are breakpoints being hit? Do they open the right (non-shadow-build) file?
#Place a breakpoint in this signal handler.
#Start debugging the project.
 
Are breakpoints being hit? Do they open the right file, i.e. the one in the source directory?
|
|
|
|
|+
|+
| Breakpoints in bigger project:
|With the project from the previous test:
# Load demos/declarative/minehunt/minehunt.pro from Qt4's, qtquick1/examples/declarative/demos/minehunt/minehunt.pro from Qt5's repository or qtdeclarative/examples/quick/demos/samegame/samegame.pro from Qt5's repository.
 
# Set a breakpoint in Tile.qml (minehunt) respectively GameArea.qml (samegame), onClicked handler of MouseArea. Is it hit? Is the right file opened in the editor? Click continue
#Add errors to the qml file.
# While the program is running, use the "Locals and Expressions" view to navigate in the object tree. Are the right files opened in the editor?
#Save and close the file.
|
#Run the project on the desktop.
|
|}


{| class="wikitable"
Are the error messages in "Issues" or "Application Output", respectively, clickable when running the app? Do they open the "right", file (in the source directory)?
|+ Locals and Expressions
! Test
! Result
! Annotation
|+
| Preparation:
# Start debugging a Quick UI Application.
# Activate the "Select" mode with the arrow button in the debugger toolbar.
# Make sure the "Locals and Expressions" view is visible.
# Click on an item in the running application.
|
|
|
|
|+
|+
| Is selection highlighted in the editor?
|Breakpoints in bigger project:
|
 
|
#Load samegame.pro from Qt's repository.<br />It's in qtdoc/examples/demos/samegame
|+
#Set a breakpoint in GameArea.qml, onClicked handler of MouseArea. Is it hit? Is the right file opened in the editor? Click continue.
| Is the selection in the "Locals and Expressions" view updated?
#While the program is running, use the "Locals and Expressions" view to navigate in the object tree. Are the right files opened in the editor?
Note: In a stack of items, lower-level items can be accessed via double-clicking
|
|
|+
| Move mouse cursor to another item. Is selection only highlighted in the running application?
|
|
|
|
Line 210: Line 159:


{| class="wikitable"
{| class="wikitable"
|+ Live Preview
|+QML Profiling
! Test  
!Test
! Result  
!Result
! Annotation  
!Annotation  
|+
|+
| While being in 'Select' mode (debugger toolbar), click on an item in the running application. Is the right file in the build directory opened, the right line/column selected?
|Can you record some profiling data (see below)?
|
|
|
|
|}
{| class="wikitable"
|+ QML Profiling
! Test
! Result
! Annotation
|+
|+
| Can you record some profiling data (see below)?
|Do all tabs show well-formed data/information for the shown events?
|
|
|
|
|+
|+
| Do all tabs show well-formed data/information for the shown events?
|Can you turn on and off the tabs by using the context menu and do all (re-)shown tabs still show well-formed data according to the last profiling?
|
|
|
|
|+
|+
| Can you turn on and off the tabs by using the context menu and do all (re-)shown tabs still show well-formed data according to the last profiling?
|With and without an already profiled app disable profiling by hitting the record button and start running again. Does the widget 's content still hold the data of the former profiling (or none if there wasn't any)?
|
|
|
|
|+
|+
| With and without an already profiled app disable profiling by hitting the record button and start running again. Does the widget 's content still hold the data of the former profiling (or none if there wasn't any)?
|Start a new analysis and test the record button. It should show the collected data when disabled, and collect new data on already running application when enabled.
|
|
|
|
|+
|+
| Start the application and test the record button. It should show the collected data when disabled, and collect new data on already running application when enabled.
|According to the Timeline tab:
(Note: The little titled subwindows in the timeline are called "tool tip" below, even though they don't behave like normal tooltips.)
 
*Toggle "view event information on mouseover" back and forth. When enabled, does it show up tool tips when hovering over painting, compiling, creating, binding and signal handler markers and do they show well-formed information? When disabled, does it '''not''' show the tooltips?
*Does the editor switch to the correct file and line number when clicking on an event (where a location is mentioned)?
*Can you drag it in both directions from the start of recording to the last event's timestamp?
*Can you stretch and squeeze it by using the overview bar beneath the timeline and the zoom-slider and can you seek the overview bar by dragging it or clicking the "thumbnail" of the timeline?
*Can you cycle through the events on the timeline by pressing "Jump to previous/next event"?
*When selecting time ranges with the "Select range" tool: does the tool tip show the correct time under the cursor? Can you set a mark at a timestamp and can you set a time range and is the displayed time correct? When double clicking on the selected range, does it zoom in to exactly that range?
|
|
|
|
|+
|+
| According to the time-line:
|According to the Statistics tab:
(Note: The little blue titled subwindows in the timeline are called "tool tip" below, even though they don't behave like normal tooltips.)
 
* Toggle "view event information on mouseover" back and forth. When enabled, does it show up tool tips when hovering over painting, compiling, creating, binding and signal handler markers and do they show well-formed information? When disabled, does it '''not''' show the tooltips?
*Does the editor switch to the correct file and line number when double-clicking on an event (Events) or location (Callees/Caller) that is not marked as "<bytecode>"?
* Does the editor switch to the correct file and line number when clicking on an event (where a location is mentioned)?
*Does the percentage shown in the line annotation match the percentage shown in the statistics?
* Can you drag it in both directions from 0 (zero) to the last event's timestamp?
*Are the relationships between callees and callers correct? (Check at least one, not necessary to be to exhaustive here)
* Can you stretch and squeeze it by using the blue bar beneath the time-line and the zoom-slider and can you seek the blue bar by dragging it or clicking the "thumbnail" of the time-line?
*Does column sorting work properly?
* Can you cycle through the events on the time-line by pressing "Jump to previous/next event"?
* When selecting time ranges with the "Select range" tool: does the tool tip show the correct time under the cursor? Can you set a mark at a timestamp and can you set a time range and is the displayed time correct? When double clicking on the selected range, does it zoom in to exactly that range?
|
|
|
|
|+
|+
| According to the Callees/Caller/Events tab:
|On the Flame Graph tab:
* Does the editor switch to the correct file and line number when clicking on an event (Events) or location (Callees/Caller) that is not marked as "<bytecode>"?
 
* Are the relationships between callees and callers correct? (Check at least one, not necessary to be to exhaustive here)
*Does the editor switch to the correct file and line number when clicking on an item?
* Does column sorting work properly?
*Double-click an item. Is it being zoomed in and are items above it resized accordingly? Can you zoom back to the full display?
* Are the events in the root node of each tab the same? (None missing in one of the views?)
*Show the different views using the combo box (Total Time, Memory, Allocations). Do they all show something that looks sane?
Note: The "Events" tab intentionally doesn't show anonymous events.
|
|
|
|
|}
|}


== Recording Profiling Data ==
==Recording Profiling Data==
 
Create or open a project. To record data:
 
*Enable QML debugging in the Projects mode (might require rebuilding the app)
*Switch to Debug mode, QML Profiler view and press the "Start" button at the QML Profiler view
*Generate some events by playing around in the running application
*Press "Stop" at the QML Profiler view


Create or open a Qt Quick Application '''AND''' a Qml Project ($QTDIR/demos/declarative/minehunt/minehunt.pro and $QTDIR/demos/declarative/samegame/samegame.qmlproject should be adequate). Do the following for each of the projects:
Try if this works with a Qt Quick Application as well as with a Qml Project. samegame.pro and samegame.qmlproject should be adequate. They are in qtdoc/examples/demos/samegame
* Enable QML debugging on the Projects view (might require rebuilding the app)
* Switch to Analyzer view and press the "Start" button at the QML Profiler widget
* Generate some events by playing around
* Press “Stop” at the QML Profiler widget

Latest revision as of 11:47, 12 March 2024


QML Editor
Test Result Annotation
Open Qml files, make them invalid & again valid, check that errors are underlined
Indent a big Qml file via "Ctrl-I" automated
Hover over elements, properties, expressions automated
Rename an ID via context menu automated
Trigger Find Usages on an id and property automated
Outline (sidebar)
Test Result Annotation
Navigate to elements / properties by clicking on the item in the outline
Change qml in text, check that Outline updates automated: tst_qml_outline
Drag&Drop elements around in outline, check that text updates Has been broken for a while. If it works again, please comment on QTCREATORBUG-26391.
Check/Uncheck 'Show all Bindings' in the Filter, outline should update accordingly
Qt Quick Wizards
Test Result Annotation
Create new "Qt Quick Application" through wizard, run application automated
Create new "Qt Quick Application (compat)" through wizard, run application
Create new "Qt Quick UI Prototype" through wizard, run application automated
Generate "Qt Quick 2 Extension Plugin", compile automated
JavaScript Debugging
Test Result Annotation
Preparation:
  1. Open samegame.qmlproject from Qt's repository.
    It's in qtdoc/examples/demos/samegame (https://code.qt.io/cgit/qt/qtdoc.git/)
  2. Place a breakpoint at the first line of the startNewGame() function (samegame.js) which contains executable code (i.e. not (only) a comment).
  3. Start debugging app
Check that the breakpoint is being hit when clicking on "1 Player", and that the breakpoint loses it's 'hour glass' when hit.
Step through startNewGame() function. Check Locals and Expressions update. Also try adding Expression Evaluators, and change content in Locals and Expressions.
Add breakpoint while debugging QML. Does the breakpoint interrupt the program?
Add breakpoint before starting QML Debugger. Does the breakpoint interrupt the program?
While interrupted in a javascript method (with more than one line), step over. Does it go to the next line?
While interrupted in a javascript method that calls another javascript method, step into. Does it enter that method's definition?
While interrupted in a javascript method, step out. Does execution resume again (or does debugger go back in context)?
Mixed Qml/JavaScript Debugging
Test Result Annotation
Breakpoints:
  1. Create a "Qt Quick Application (compat)" project.
  2. Make sure in Projects mode that you don't build the project in the source directory.
  3. Check that "QML debugging and profiling" is enabled in Build Settings.
  4. Rebuild.
  5. Make sure "C++" and "QML" Debugging under "Debugger Settings" are enabled in Run Settings.
  6. Place a breakpoint in main.cpp, before Q(Gui)Application object is constructed.
  7. Add a signal handler to main.qml, e.g:
    onWidthChanged: console.log("Hello World!")
  8. Place a breakpoint in this signal handler.
  9. Start debugging the project.

Are breakpoints being hit? Do they open the right file, i.e. the one in the source directory?

With the project from the previous test:
  1. Add errors to the qml file.
  2. Save and close the file.
  3. Run the project on the desktop.

Are the error messages in "Issues" or "Application Output", respectively, clickable when running the app? Do they open the "right", file (in the source directory)?

Breakpoints in bigger project:
  1. Load samegame.pro from Qt's repository.
    It's in qtdoc/examples/demos/samegame
  2. Set a breakpoint in GameArea.qml, onClicked handler of MouseArea. Is it hit? Is the right file opened in the editor? Click continue.
  3. While the program is running, use the "Locals and Expressions" view to navigate in the object tree. Are the right files opened in the editor?
QML Profiling
Test Result Annotation
Can you record some profiling data (see below)?
Do all tabs show well-formed data/information for the shown events?
Can you turn on and off the tabs by using the context menu and do all (re-)shown tabs still show well-formed data according to the last profiling?
With and without an already profiled app disable profiling by hitting the record button and start running again. Does the widget 's content still hold the data of the former profiling (or none if there wasn't any)?
Start a new analysis and test the record button. It should show the collected data when disabled, and collect new data on already running application when enabled.
According to the Timeline tab:

(Note: The little titled subwindows in the timeline are called "tool tip" below, even though they don't behave like normal tooltips.)

  • Toggle "view event information on mouseover" back and forth. When enabled, does it show up tool tips when hovering over painting, compiling, creating, binding and signal handler markers and do they show well-formed information? When disabled, does it not show the tooltips?
  • Does the editor switch to the correct file and line number when clicking on an event (where a location is mentioned)?
  • Can you drag it in both directions from the start of recording to the last event's timestamp?
  • Can you stretch and squeeze it by using the overview bar beneath the timeline and the zoom-slider and can you seek the overview bar by dragging it or clicking the "thumbnail" of the timeline?
  • Can you cycle through the events on the timeline by pressing "Jump to previous/next event"?
  • When selecting time ranges with the "Select range" tool: does the tool tip show the correct time under the cursor? Can you set a mark at a timestamp and can you set a time range and is the displayed time correct? When double clicking on the selected range, does it zoom in to exactly that range?
According to the Statistics tab:
  • Does the editor switch to the correct file and line number when double-clicking on an event (Events) or location (Callees/Caller) that is not marked as "<bytecode>"?
  • Does the percentage shown in the line annotation match the percentage shown in the statistics?
  • Are the relationships between callees and callers correct? (Check at least one, not necessary to be to exhaustive here)
  • Does column sorting work properly?
On the Flame Graph tab:
  • Does the editor switch to the correct file and line number when clicking on an item?
  • Double-click an item. Is it being zoomed in and are items above it resized accordingly? Can you zoom back to the full display?
  • Show the different views using the combo box (Total Time, Memory, Allocations). Do they all show something that looks sane?

Recording Profiling Data

Create or open a project. To record data:

  • Enable QML debugging in the Projects mode (might require rebuilding the app)
  • Switch to Debug mode, QML Profiler view and press the "Start" button at the QML Profiler view
  • Generate some events by playing around in the running application
  • Press "Stop" at the QML Profiler view

Try if this works with a Qt Quick Application as well as with a Qml Project. samegame.pro and samegame.qmlproject should be adequate. They are in qtdoc/examples/demos/samegame