Skip to content
Snippets Groups Projects
Spencer Sutton's avatar
Spencer Sutton authored
commit 32dca163 
Author: Sutton <suttonsp@147dda3a90de.ant.amazon.com> 
Date: Thu Feb 18 2021 10:13:25 GMT-0600 (Central Standard Time) 

    Reverting hard-coded test string


commit bcaf29b1 
Author: Sutton <suttonsp@147dda3a90de.ant.amazon.com> 
Date: Thu Feb 18 2021 10:03:44 GMT-0600 (Central Standard Time) 

    Updating cors tests


commit fe6ae07c 
Author: Sutton <suttonsp@147dda3a90de.ant.amazon.com> 
Date: Wed Feb 17 2021 18:11:45 GMT-0600 (Central Standard Time) 

    Updated to check header by contains


commit 0fc29b53 
Author: Sutton <suttonsp@147dda3a90de.ant.amazon.com> 
Date: Wed Feb 17 2021 16:24:51 GMT-0600 (Central Standard Time) 

    Fixing cors test


commit e8a71907 
Author: Sutton <suttonsp@147dda3a90de.ant.amazon.com> 
Date: Wed Feb 17 2021 16:22:54 GMT-0600 (Central Standard Time) 

    Fixing failing cors test
969e7ad3
History
Code owners
Assign users and groups as approvers for specific file changes. Learn more.

Copyright 2017-2020, Schlumberger

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

 http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Notification service integration tests

Notification integration tests are refactored so that the business logic for integration tests resides in the notification-test-core module and provider specific logic and execution steps reside in provider module (e.g. notification-test-gcp). To run the integration tests, the core module is built first and then the provider module is executed. Please read further to know more details.

###Dependencies needed to run the integration tests

  • JDK11

  • Maven

  • Azure Devops access to slb-des-ext-collaboration organization. You need to generate a PAT that can access dependencies held in the Azure artifacts

  • Values for the following environment variables in Config.java

     DE_OPS_TESTER (service account key which has full api access)
     DE_ADMIN_TESTER (service account key which has admins api access)
     DE_EDITOR_TESTER (service account key which has editor api access)
     DE_NO_ACCESS_TESTER (service account key which has not api access)
     ENVIRONMENT ('local' for local testing or 'dev' for dev testing)
     HMAC_SECRET (sensitive secret to run HMAC tests)
     REGISTER_BASE_URL (register service endpoint)
     NOTIFICATION_BASE_URL (notification service endpoint)
     *Only for gcp INTEGRATION_TEST_AUDIENCE (oauth client ID)
     

    Above variables should be configured in the release pipeline to run integration tests. You should also replace them with proper values if you wish to run tests locally.

###Commands to run tests

  • Integration tests are refactored into two pieces: Core and Provider. Core contains business logic for tests and is a dependency for executing the tests from provider module. To build the core module, simply navigate to notification-test-core directory and run mvn clean install. This will build the core module
  • Next, to execute the integration tests, navigate to the provider module and execute mvn test

GCP

Instructions for running the GCP integration tests can be found here.