aboutsummaryrefslogtreecommitdiffstats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* Created support to function qAddPostRoutine.Renato Araujo Oliveira Filho2012-03-082-0/+19
| | | | | | | | Created unit test for bug #515 Fixes bug #515 Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Lauro Moura <lauro.neto@openbossa.org>
* Added test case for Bug #572.Marcelo Lira2012-03-081-0/+4
| | | | | | | | Bug #572: Giving unicode value as 'body' argument to WebView's load method crashes python. Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Renato Araújo <renato.filho@openbossa.org>
* Fix QTreeWidgetItem.parent function.Renato Araujo Oliveira Filho2012-03-081-2/+19
| | | | | | | | Create unit test for new use case. Fixes bug #547 Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Fixed QWidget.parent function.Renato Araujo Oliveira Filho2012-03-082-0/+33
| | | | | | | | Create unit test for bug 576. Fixes bug #576. Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Lauro Moura <lauro.neto@openbossa.org>
* Avoid conflict in test case namesLauro Neto2012-03-081-1/+1
| | | | | Reviewer: Hugo Lima <hugo.lima@openbossa.org> Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
* Fixed test to work in all platform.Renato Araujo Oliveira Filho2012-03-081-2/+2
|
* Fix bug#514 - "Static method QByteArray.fromRawData is missing from QtCore"Hugo Parente Lima2012-03-081-0/+7
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Lauro Moura <lauro.neto@openbossa.org>
* Fix bug 546 - "Python crash on exit"Hugo Parente Lima2012-03-082-0/+15
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Lauro Moura <lauro.neto@openbossa.org>
* Fix bug#493 - "__eq__ and friends not implemented for QKeyEvent == QKeySequence"Hugo Parente Lima2012-03-082-0/+22
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Lauro Moura <lauro.neto@openbossa.org>
* Improve QtScriptEngineDebugger test behaviorLauro Neto2012-03-081-11/+14
| | | | | | | | The extra ContinueAction after evaluate() was crashing on MacOS X. Reviewer: Hugo Lima <hugo.lima@openbossa.org> Reviewer: Renato Araujo <renator.filho@openbossa.org>
* Changed api2 test to work on MacOS during a ssh session.Renato Araujo Oliveira Filho2012-03-081-8/+7
|
* Fix bug#569 - "QTableWidgetItem is missing binding of __lt__ to operator<"Hugo Parente Lima2012-03-082-0/+20
| | | | | Reviewer: Renato Araújo <renato.filho@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fix bug#563 - "Unhandled signal emitting with invalid signature (which leads ↵Hugo Parente Lima2012-03-084-15/+15
| | | | to application crash)"
* Fix test to avoid problems on slow computers.Renato Araujo Oliveira Filho2012-03-081-1/+1
| | | | Reviewed by Hugo Parente <hugo.lima@openbossa.org>
* Appended QtGui library dependency on pysidetest library.Renato Araujo Oliveira Filho2012-03-081-2/+2
|
* Fix QTreeWidget parent rules.Renato Araujo Oliveira Filho2012-03-082-0/+40
| | | | | | | | | | QTreeWidget.clear() - remove all child ref from the current widget QTreeWidgetItem.parent() - use default policy for returned value Fix bug #547 Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Removed some float comparisons from QColor test to avoid armel problems.Renato Araujo Oliveira Filho2012-03-081-12/+1
| | | | Reviewed by Hugo Parente <hugo.lima@openbossa.org>
* Fix bug#549 - "QGraphicsWidget::getContentsMargins() and ↵Hugo Parente Lima2012-03-082-0/+17
| | | | | | | QGraphicsWidget::getWindowFrameMargins() not available" Reviewer: Renato Araújo <renato.filho@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Used more common signature on function test to QList objects.Renato Araujo Oliveira Filho2012-03-081-1/+1
| | | | | Replaced "const QList<QObject*>" signature to "const QList<QObject*>&", more used on Qt code.
* Fix testbinding dependencyLauro Neto2012-03-081-1/+1
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Reviewer: Renato Araujo <renato.araujo@openbossa.org>
* Moved list_signal_test to pysidetest library.Renato Araujo Oliveira Filho2012-03-085-36/+27
| | | | | | | | This isolate the test case, and avoid other problems with X during the buildbot compilation. Reviewer: Lauro Moura <lauro.neto@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Fix the QtMultimedia/audio_test.py to accept computers with only nullRenato Araujo Oliveira Filho2012-03-081-1/+7
| | | | device.
* Avoid QMatrix test while gcc is broken.Renato Araujo Oliveira Filho2012-03-081-0/+5
|
* Fixed global functions from QT_TR_NOOP and QT_TRANSLATE_NOOP family.Marcelo Lira2012-03-082-0/+49
| | | | | | | | | | | These function just return one of their arguments as result, and the buggy implementation was forgetting to increment the reference count for the returned object. A new unit test was added. Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Renato Araújo <renato.filho@openbossa.org>
* Fixes bug #502.Marcelo Lira2012-03-085-7/+88
| | | | | | | | | | | | | The ownership of the editor returned by the Python override of QAbstractItemDelegate.createEditor(...) is now transferred to C++. A test was added to simulate the situation that triggers the bug, instead of relying on an example with a view, model and editable cells. See: http://bugs.openbossa.org/show_bug.cgi?id=502 Reviewed by Lauro Moura <lauro.neto@openbossa.org> Reviewed by Renato Araújo <renato.filho@openbossa.org>
* Fixed type system for TestView from pysidetest directory.Marcelo Lira2012-03-081-1/+1
|
* Fix bug#544 - "QtCore.QRect missing binding for method getCoords"Hugo Parente Lima2012-03-081-1/+11
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Lauro Moura <lauro.neto@openbossa.org>
* Fix QtMultimedia test to not fail when no devices were found.ps-1.0.0-beta2Hugo Parente Lima2012-03-081-1/+5
| | | | | Reviewer: Renato Araújo <renato.filho@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Use .pyd extension for pysidetest module on Windows.Hugo Parente Lima2012-03-081-0/+3
|
* Fix QML tests on Windows.Hugo Parente Lima2012-03-083-3/+3
|
* Fix compilation under MS Windows.Hugo Parente Lima2012-03-081-2/+2
|
* Added a call to QObject.metaObject() to check if a segfault is caused.Marcelo Lira2012-03-081-1/+1
| | | | | | | | | | | This completes the tests for bug #507[1]. Also removed an unnecessary commented line. [1] http://bugs.openbossa.org/show_bug.cgi?id=507 Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Renato Araújo <renato.filho@openbossa.org>
* Fixed QML type registering test.Marcelo Lira2012-03-081-1/+1
| | | | | Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Lauro Moura <lauro.neto@openbossa.org>
* Updated model/view test to follow changes in Shiboken/9459b9da commit.Marcelo Lira2012-03-081-1/+1
| | | | | Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Lauro Moura <lauro.neto@openbossa.org>
* Updated the PySide test related to Python model returning data to C++.Marcelo Lira2012-03-083-13/+29
|
* Created function used in PyObject getAttro.Renato Araujo Oliveira Filho2012-03-082-0/+22
| | | | | | | | Moved the code generated to a function in libpyside. Create unit test for bug #525. Reviewer: Hugo Parente Lima <hugo.pl@gmail.com> Marcelo Lira <marcelo.lira@openbossa.org>
* Created unittest for bug #505.Renato Araujo Oliveira Filho2012-03-082-0/+23
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fix bug#512 - "QGridLayout::getItemPosition() is not available"Hugo Parente Lima2012-03-082-0/+23
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Renato Araújo <renato.filho@openbossa.org>
* Added test for Python written models returning new objects without keeping ↵Marcelo Lira2012-03-086-0/+101
| | | | | | | reference to them. Reviewed by Lauro Moura <lauro.neto@openbossa.org> eviewed by Luciano Wolf <luciano.wolf@openbossa.org>
* Fixed new style signal connection tests for the proper semantics.Marcelo Lira2012-03-082-2/+7
| | | | | | | | | One example to clarify: for the "destroyed(QObject* = 0)" signal, "obj.destroyed.connect(...)" connects to "destroyed()", and "obj.destroyed[QObject].connect(...)" connects to "destroyed(QObject*)". Reviewed by Lauro Moura <lauro.neto@openbossa.org> Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
* Added unit test for bug#500Hugo Parente Lima2012-03-082-0/+16
| | | | | Reviewer: Lauro Mora <lauro.neto@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Add tests for qmlregisterType function and qml list properties.Hugo Parente Lima2012-03-083-0/+122
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Changed file permissions to 0644.Hugo Parente Lima2012-03-083-0/+0
|
* Fixes QImage constructor signature that used string buffer as image data source.Marcelo Lira2012-03-082-0/+21
| | | | | | | | | | | | The fixes uses the patch provided by Pieter Palmers on the bug #489 description[1]. A very simple test, to check the signature existence, was added. [1] http://bugs.openbossa.org/show_bug.cgi?id=489 Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
* Added QRegExp.replace(QString, const char*) method.Marcelo Lira2012-03-082-0/+21
| | | | | | | | | | | | | | The only way to search and replace using QRegExp is using the QString::replace method. Since QString was removed, QRegExp now is useful only to search stuff, but not replace. For this purpose the QRegExp.replace method was added. The first argument is the string that will be operated over, the second argument contains the replacement, and the return value is a new modified Python string. Unit tests and documentation for QRegExp.replace were added as well. Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
* Fix compilation on Windows.ps-1.0.0-beta1Hugo Parente Lima2010-11-251-0/+3
| | | | Reviewer: Renato Araújo <renato.filho@openbossa.org>
* Fix bug#496 - "No binary read/write methods in QDataStream"Hugo Parente Lima2010-11-241-0/+12
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Renato Araújo <renato.filho@openbossa.org>
* Created unit test for bug #480.Renato Araujo Oliveira Filho2010-11-232-0/+26
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fixed unit test related to bug #446.Renato Araujo Oliveira Filho2010-11-222-4/+3
|
* Fix generated property flags on metaobject.Renato Araujo Oliveira Filho2010-11-221-0/+14
| | | | | | | Fixes bug #478 Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>