
This PS adds validation logic recently implemented in armada.utils.validate [0] for validating documents and Armada-generated Manifests to the Test and Tests controller classes. Also refactors some exception handling for both controller classes to better bubble up the appropriate exception. Finally unit tests have been added for the Armada Test controller to verify above changes work. [0] https://review.gerrithub.io/#/c/378700/ Change-Id: I01f73c1778bf7c2e38032d5fddabd327c013edbb
46 lines
1.5 KiB
Bash
Executable File
46 lines
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright 2017 AT&T Intellectual Property. All other rights reserved.
|
|
#
|
|
# 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.
|
|
|
|
set -ex
|
|
|
|
CMD="armada"
|
|
|
|
# Define port
|
|
PORT=${ARMADA_API_PORT:-8000}
|
|
# How long uWSGI should wait for each Armada response
|
|
ARMADA_API_TIMEOUT=${ARMADA_API_TIMEOUT:-"3600"}
|
|
# Number of uWSGI workers to handle API requests
|
|
ARMADA_API_WORKERS=${ARMADA_API_WORKERS:-"4"}
|
|
# Threads per worker
|
|
ARMADA_API_THREADS=${ARMADA_API_THREADS:-"1"}
|
|
|
|
# Start Armada application
|
|
# TODO(fmontei): Should be specifying callable too. But Armada spins up the
|
|
# server during import in `armada.api.server`.
|
|
if [ "$1" = 'server' ]; then
|
|
exec uwsgi \
|
|
--http :${ARMADA_API_PORT} \
|
|
--http-timeout $ARMADA_API_TIMEOUT \
|
|
--enable-threads \
|
|
-L \
|
|
--paste config:/etc/armada/api-paste.ini \
|
|
--pyargv "--config-file /etc/armada/armada.conf" \
|
|
--threads $ARMADA_API_THREADS \
|
|
--workers $ARMADA_API_WORKERS
|
|
else
|
|
exec $CMD "$@"
|
|
fi
|