| Version 1 (modified by zenogantner, 2 years ago) (diff) |
|---|
What to report
- for each single item
- OK or
- crashes
- inconsistent behaviour
- actions that do not work as expected
- OK or
- for each section
- How much time did it take you to perform the tests?
Preparation
- OK fresh Padre installation
- OK check whether you are running the to-be-released Padre version by opening the "About" box
Perl 5 scripts => ONE PROBLEM
- OK open a Perl script
- OK run it by hitting F5
- OK change to the other output variant (external window or internal pane)
- FAIL run it by hitting Shift-F5
- OK enable syntax checks
- OK introduce a syntax error and inspect resulting output
- OK click on the syntax error to jump to the position of the error
- OK enable autocomplete at "Tools"->"Preferences"->"Autocomplete"
- OK start typing a word which is already in the file (maybe "warn" from "warnings")
- OK hit Ctrl-Space, select a suggestion and confirm it
- OK enable bracket autocomplete at "Tools"->"Preferences"->"Behavior"
- OK type ( [ { " ' - each of them should get its closing part automatically
Perl 5 modules
- open a large Perl module from the Padre source
- enable "View"->"Show Functions"
- double-click on a function name to jump to its location in the file
- the text cursor should be at the corresponding function in the file
- enable "View"->"Show Outline"
- double-click on a method name to jump to its location in the file
- the text cursor should be at the corresponding location in the file
Perl projects
- enable the project browser: "View"->"Show Project Browser/Tree?"
- browse the directories of the Padre project
- open a file from the project
- save it under another name
- delete the newly created file
- load file using "Search" -> "Open Resource ..."
Text files
- "File" -> "New"
- save it as file.txt
- save it as file
- load a text file from disk
- use "Edit" -> "Go To ..." to jump to a given line
- use "Edit" -> "Go To ..." to jump to a given character position
Saving perl file without extension forgets its mime-type (see #1107)
- "File" -> "New"
- type in
#!/usr/bin/perl use strict; use warnings;
- save it as file
- Check if the mime-type (3rd box on the status bar) says "Perl 5"
- Close the file
- Open The file using "File" -> "Open"
- Check if the mime-type (3rd box on the status bar) says "Perl 5"
- Open The file using "File" -> "Save As"
- save it as file2
- Check if the mime-type (3rd box on the status bar) says "Perl 5"
Perl distributions and templates and running
- create a new Perl 5 distribution: "File" -> "New" -> "Perl Distribution ..."
- create an additional "hello, world" style Perl 5 module in the same namespace: "File" -> "New" -> "Perl 5 Module"
- use "File" -> "Save Intuition" to save the module
- create a test for the module: "File" -> "New" -> "Perl 5 Test"
- run the test: "Run" -> "Run Tests"
- run the test: "Run" -> "Run and Build Tests"
- create a new Perl 5 script that uses the module: "File" -> "New" -> "Perl 5 Script"
- run it: "Run" -> "Run Script"
- run it: "Run" -> "Run Script (Debug Info)"
- add an infinite loop the the script
- run the script and abort it using F6
Sessions
- cycle through the files using the keyboard: Ctrl-PageUp? and Ctrl-PageDown?
- save the session
- close one tab
- go to "File" -> "Recent Files" and re-open the file
- close all tabs
- load the session that you saved before
Padre server
- start Padre
- "Tools" -> "Preferences": enable "Open Files in existing Padre"
- restart Padre
- type padre SOME_FILE in the command line (should open in the same instance of Padre)
- "Tools" -> "Preferences": disable "Open Files in existing Padre"
- restart Padre
- type padre SOME_FILE in the command line (should start a new instance of Padre)
