summaryrefslogtreecommitdiffstats
path: root/tests/core
Commit message (Collapse)AuthorAgeFilesLines
* Object: Add tests about the safety of tail destructionPedro J. Estébanez2024-09-171-0/+78
| | | | (cherry picked from commit bb7752059966b38f75714914474da1b9f93dc294)
* Fix parsing of `4.` in ExpressionHaoyu Qiu2024-09-171-0/+53
| | | | (cherry picked from commit ee9cea521d97088eb368cb1820db71100da9837b)
* Fix split_floats behavior when spaces are used as separatorsHaoyu Qiu2024-09-161-48/+74
| | | | (cherry picked from commit f483c3aafa5f3cfb1ab763ab4eb077aac74e88d6)
* Fix Vector4, Vector4i, and Projection missing from ClassDB testsAaron Franke2024-08-141-5/+10
|
* Fix Image CowData crash when baking large lightmapsHugo Locurcio2024-07-191-6/+6
| | | | | | | | | | | This switches to 64-bit integers in select locations of the Image class, so that image resolutions of 16384×16384 (used by lightmap texture arrays) can be used properly. Values that are larger should also work. VRAM compression is also supported, although most VRAM-compressed formats are limited to individual slices of 16384×16384. WebP is limited to 16383×16383 due to format limitations.
* [Tests] Fix various unit tests on minimal buildsA Thousand Ships2024-07-182-0/+14
|
* [Tests] Fix some invalid error messagesA Thousand Ships2024-07-102-12/+12
| | | | These used `utf8().get_data()` when they should be passed as `String`
* [Tests] Fix unit tests in template buildsA Thousand Ships2024-06-294-2/+10
|
* Merge pull request #89197 from AThousandShips/arr_typed_fixRémi Verschelde2024-06-261-0/+37
|\ | | | | | | [Core] Fix sharing of typed arrays from constructor
| * [Core] Fix sharing of typed arrays from constructorA Thousand Ships2024-05-071-0/+37
| |
* | Use subfolder for temporary test fileskobewi2024-06-053-10/+10
| |
* | Merge pull request #90506 from Calinou/test-transform2d-add-more-testsRémi Verschelde2024-05-291-13/+97
|\ \ | | | | | | | | | Add more unit tests for Transform2D
| * | Add more unit tests for Transform2Dtitus1252024-04-101-13/+97
| | |
* | | Use Core/Scene stringnames consistentlykobewi2024-05-132-3/+2
| | |
* | | Add shorthand for using singleton string nameskobewi2024-05-111-2/+2
| | |
* | | Fix AABB Ray intersection - return insidelawnjelly2024-05-091-0/+61
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Separates find_intersects from test_intersects for rays, and wraps the former. * Changes parameter name to "r_intersection_point". * Fixes broken old version which returned per axis t. * Returns whether the ray origin is within the AABB. * Returns intersection point when origin outside. * Returns "backtracking" intersection point when inside. * Returns sensible normal when inside. * Returns valid results on borders. * Returns robust results dealing with floating point error. Co-authored-by: Claire Blackshaw <evilkimau@gmail.com>
* | | Merge pull request #91619 from AThousandShips/find_improveRémi Verschelde2024-05-081-6/+6
|\ \ \ | | | | | | | | | | | | Replace `find` with `contains/has` where applicable
| * | | Replace `find` with `contains/has` where applicableA Thousand Ships2024-05-081-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * Replaces `find(...) != -1` with `contains` for `String` * Replaces `find(...) == -1` with `!contains` for `String` * Replaces `find(...) != -1` with `has` for containers * Replaces `find(...) == -1` with `!has` for containers
* | | | [Core] Add case-insensitive `String::containsn`A Thousand Ships2024-05-081-1/+14
|/ / /
* | | Style: Trim trailing whitespace and ensure newline at EOFRémi Verschelde2024-05-081-1/+1
| | | | | | | | | | | | Found by apply the file_format checks again via #91597.
* | | Merge pull request #91615 from Frozenfire92/remap-doc-nan-noteRémi Verschelde2024-05-081-0/+3
|\ \ \ | | | | | | | | | | | | Add docs note about remap returning undefined when istart == istop
| * | | Add notes for remap's return when istart and istop are the sameJoel Kuntz2024-05-071-0/+3
| | | | | | | | | | | | | | | | | | | | Co-Authored-By: Rémi Verschelde <rverschelde@gmail.com> Co-Authored-By: kleonc <9283098+kleonc@users.noreply.github.com>
* | | | Add const char * overloads to String classWilson E. Alvarez2024-05-071-139/+151
| |_|/ |/| | | | | | | | Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com>
* | | Merge pull request #90705 from AThousandShips/foreach_listRémi Verschelde2024-05-074-12/+10
|\ \ \ | | | | | | | | | | | | Reduce and prevent unnecessary random-access to `List`
| * | | Reduce and prevent unnecessary random-access to `List`A Thousand Ships2024-05-044-12/+10
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | Random-access access to `List` when iterating is `O(n^2)` (`O(n)` when accessing a single element) * Removed subscript operator, in favor of a more explicit `get` * Added conversion from `Iterator` to `ConstIterator` * Remade existing operations into other solutions when applicable
* / / [Core] Add `LocalVector::has` for convenienceA Thousand Ships2024-05-061-1/+10
|/ /
* | Add PackedVector4Array Variant typeK. S. Ernest (iFire) Lee2024-05-032-1/+7
| | | | | | | | | | Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
* | Suppressed expected errors for uncached resources.killzebug2024-04-221-0/+5
| |
* | Replace Clipper1 library by Clipper2 libraryRicardo Buring2024-04-201-4/+4
| |
* | Merge pull request #61013 from Calinou/test-add-transform3dRémi Verschelde2024-04-191-0/+29
|\ \ | | | | | | | | | Add rotation unit tests for Transform3D
| * | Add rotation unit tests for Transform3DHugo Locurcio2024-04-101-0/+29
| |/ | | | | | | Co-authored-by: Alexander Pruss <alex.pruss@gmail.com>
* | Merge pull request #90268 from RandomShaper/wtp_serversRémi Verschelde2024-04-152-10/+101
|\ \ | | | | | | Use WorkerThreadPool for Server threads (enhanced)
| * | WorkerThreadPool: Support daemon-like tasks (via yield semantics)Pedro J. Estébanez2024-04-102-10/+101
| | |
* | | [Core] Fix incorrect comparison for `Array` const iteratorA Thousand Ships2024-04-131-0/+4
| | |
* | | Add `closest_points_between_segments()` basis path tests for Geometry2DAlex Billedeaux2024-04-101-30/+56
| |/ |/|
* | Fix a doc and a test issue not caught by CIRémi Verschelde2024-04-101-2/+0
|/
* Merge pull request #90313 from Nazarwadim/unit_tests_oa_hash_mapRémi Verschelde2024-04-101-0/+227
|\ | | | | | | Add unit tests for `OAHashMap`
| * Add unit tests for OAHashMapnazarii2024-04-101-0/+227
| |
* | [Core] Add iteration support to `Array`A Thousand Ships2024-04-101-0/+48
| |
* | Add unit test for resolve_hostnameRevoluPowered2024-04-101-0/+51
|/
* Add unit test for Vector2 plane_projectnazarii2024-04-051-0/+4
|
* Merge pull request #90063 from aaronfranke/really-floatyRémi Verschelde2024-04-041-3/+3
|\ | | | | | | Fix some uses of `float` and `real_t` in `core/math`
| * Fix some uses of float and real_t in core/mathAaron Franke2024-03-291-3/+3
| |
* | Merge pull request #78219 from dalexeev/core-typed-arrays-bin-serializationRémi Verschelde2024-04-041-9/+69
|\ \ | |/ |/| | | Core: Add typed array support for binary serialization
| * Core: Add typed array support for binary serializationDanil Alexeev2024-03-201-9/+69
| |
* | [Core] Fix incorrect file sort methodA Thousand Ships2024-03-241-0/+2
| |
* | Fix sorting of files/dirs in dialogsA Thousand Ships2024-03-201-0/+8
|/ | | | Sorts leading `_` before other characters except `.`.
* Merge pull request #87680 from AThousandShips/the_angry_countRémi Verschelde2024-03-132-0/+146
|\ | | | | | | Add methods to get argument count of methods
| * Add methods to get argument count of methodsA Thousand Ships2024-03-102-0/+146
| | | | | | | | | | | | | | | | Added to: * `Callable`s * `Object`s * `ClassDB` * `Script(Instance)`s
* | Merge pull request #86936 from akx/env-utf-8Rémi Verschelde2024-03-111-2/+24
|\ \ | |/ |/| | | Attempt parsing environment variables as UTF-8