-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
IBX-6507: Multirepo setup for Solr & ES
- Loading branch information
Showing
2 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
features/setup/multirepository/multirepository_elastic.feature
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Feature: Multirepository setup for testing with Elastic | ||
|
||
@multirepository | ||
Scenario: Set up new connection and make the default one unaccessible | ||
Given I set configuration to "ibexa_elasticsearch.connections" in "config/packages/ibexa_elasticsearch.yaml" | ||
""" | ||
default: | ||
hosts: | ||
- "%elasticsearch_dsn_invalid%" | ||
second_connection: | ||
hosts: | ||
- "%elasticsearch_dsn%" | ||
""" |
17 changes: 17 additions & 0 deletions
17
features/setup/multirepository/multirepository_solr.feature
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
Feature: Multirepository setup for testing with Solr | ||
|
||
@multirepository | ||
Scenario: Set up new connection and make the default one unaccessible | ||
Given I set configuration to "ibexa_solr.connections" in "config/packages/ibexa_solr.yaml" | ||
""" | ||
default: | ||
entry_endpoints:: | ||
- endpoint1_invalid | ||
mapping: | ||
- default: endpoint1_invalid | ||
second_connection: | ||
entry_endpoints:: | ||
- endpoint0 | ||
mapping: | ||
- default: endpoint0 | ||
""" |