mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-08-29 07:50:08 +08:00
- Listen to legacy api calls on the LegacyRedirectListener - Add LegacyApiRedirectHandler to re-direct to legacy endpoint -- Using 307 re-direction response to support post re-direction -- Using api_paths.yaml with the configuration with paths to check - Setup API tests using codeception -- Add helper methods to login in v4 and v8 API - Add Api test to create account using v4 api - Add Api test to create account using v8 api - Add unit test for LegacyApiRedirectHandler
16 lines
468 B
YAML
16 lines
468 B
YAML
# Codeception Test Suite Configuration
|
|
#
|
|
# Suite for acceptance tests.
|
|
# Perform tests in browser using the WebDriver or PhpBrowser.
|
|
# If you need both WebDriver and PHPBrowser tests - create a separate suite.
|
|
|
|
actor: AcceptanceTester
|
|
modules:
|
|
enabled:
|
|
- PhpBrowser:
|
|
url: http://localhost:8000
|
|
- \App\Tests\Helper\Acceptance
|
|
- \App\Tests\Helper\ConfigHelper:
|
|
login_username: admin
|
|
login_password: admin
|
|
|