libresign / nextcloud-behat
Basic steps for a Nextcloud app
Installs: 28 174
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: >=8.1
- behat/behat: ^3.13
- estahn/json-query-wrapper: *
- guzzlehttp/guzzle: ^7.8
- libresign/behat-builtin-extension: ^0.6.2
- phpunit/phpunit: *
Requires (Dev)
- bamarni/composer-bin-plugin: ^1.8
- donatj/mock-webserver: ^2.6
- dev-main
- v1.1.0
- v1.0.0
- v0.15.3
- v0.15.2
- v0.15.1
- v0.15.0
- v0.14.3
- v0.14.2
- v0.14.1
- v0.14.0
- v0.13.0
- v0.12.1
- v0.12.0
- v0.11.1
- v0.11.0
- v0.10.1
- v0.10.0
- v0.9.3
- v0.9.2
- v0.9.1
- v0.9.0
- v0.8.6
- v0.8.5
- v0.8.4
- v0.8.3
- v0.8.2
- v0.8.1
- v0.8.0
- v0.7.3
- v0.7.2
- v0.7.1
- v0.7
- v0.6
- v0.5.1
- v0.5
- v0.4
- v0.3
- v0.2
- v0.1
- dev-chore/add-support-to-php84
- dev-chore/validate-owner-of-file
- dev-chore/bump-cs
- dev-chore/bump-psalm
- dev-chore/bump-dependencies
- dev-stable29
- dev-chore/improve-error-message
- dev-feature/match-initial-state-using-jsonquery
This package is auto-updated.
Last update: 2025-03-27 19:56:49 UTC
README
Basic Behat steps for a Nextcloud app
Install
composer require --dev libresign/nextcloud-behat
Create the file behat.yml
default: autoload: '': '%paths.base%/features/bootstrap' suites: default: contexts: - Libresign\NextcloudBehat\NextcloudApiContext: parameters: # default value test_password: 123456 # default value admin_password: admin # Only necessary if you want to have a different features folder paths: - '%paths.base%/features' extensions: # Use this extension to start the server PhpBuiltin\Server: verbose: false rootDir: /var/www/html host: localhost
Create the file tests/features/bootstrap/FeatureContext.php
with this content:
<?php use Libresign\NextcloudBehat; class FeatureContext extends NextcloudApiContext { }
Then, now you can see all available steps:
vendor/bin/behat -dl
When as user :user When user :user exists When sending :verb to :url When the response should be a JSON array with the following mandatory values When /^set the display name of user "([^"]*)" to "([^"]*)"$/ When /^set the email of user "([^"]*)" to "([^"]*)"$/ When sending :verb to ocs :url When the response should have a status code :code When fetch field :path from prevous JSON response When the response should contain the initial state :name with the following values: When the response should contain the initial state :name json that match with: When the following :appId app config is set
Tips
Value as string
To send a json value as string, prefix the json string with (string)
Example:
When sending "post" to ocs "/apps/provisioning_api/api/v1/config/apps/appname/propertyname" | value | (string){"enabled":true} |
Value as array
To send a value as array, you can set a json string and the json string will be converted to array
Example:
When sending "post" to ocs "/apps/libresign/api/v1/request-signature" | status | 1 | | file | {"base64":""} |
Step: fetch field :path from prevous JSON response
If the json response is an array, you can fetch specific values using this step. The fetched values is stored to be used by other steps.
:path
: Path is a selector to retrieves a value from a deeply nested array using "dot" notation:
To the follow json:
{"products":{"desk":{"price":100}}}
path need to be: products.desk.price
You also can prefix the path by an alias inside parenthesis:
(price)products.desk.price
The alias price
could be used in a path or body of a request:
When set the response to: """ { "data": [ { "foo":"bar" } ] } """ And sending "POST" to "/" And fetch field "(foo)data.0.foo" from prevous JSON response # After fetch the field, you can use the value of field like this: And sending "POST" to "/?foo=<foo>" | field | <data.0.foo> |
Parse response using jq
You can use jq expression casting to check a value in a json response body of a request. To do this you will need to install the jq command.
Example:
When set the response to: """ { "Foo": { "Bar": "33" } } """ And sending "POST" to "/" Then the response should be a JSON array with the following mandatory values | key | value | | Foo | (jq).Bar == "33" | | (jq).Foo | {"Bar":"33"} | | (jq).Foo | (jq).Bar == "33" | | (jq).Foo.Bar | 33 |
Parse text
If you need to:
- Get values from a request, store and use in other request
- Parse the response of a request
Implement a method parseText
like the follow code and remember to call parent method.
This methods can works together with fetch field :path from prevous JSON response
protected function parseText(string $text): string { $patterns = [ '/<SIGN_UUID>/', '/<FILE_UUID>/', ]; $replacements = [ $this->signer['sign_uuid'] ?? null, $this->file['uuid'] ?? $this->getFileUuidFromText($text), ]; $text = preg_replace($patterns, $replacements, $text); $text = parent::parseText($text); return $text; }
For more information about parseText, check the scenario Test get field from json response