aboutsummaryrefslogtreecommitdiffstats
path: root/docker/smoke/Dockerfile
blob: ae56a6c755b3996ea90d0e57d8e52467b191ec50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
FROM opnfv/functest-core

ARG BRANCH=master
ARG OPENSTACK_TAG=stable/pike
ARG ODL_TAG=master
ARG FDS_TAG=master
ARG REFSTACK_TAG=master

RUN apk --no-cache add --virtual .build-deps --update \
        python-dev build-base linux-headers libffi-dev \
        openssl-dev libjpeg-turbo-dev git && \
    wget -q -O- https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=$OPENSTACK_TAG | \
        sed -E s/^tempest==+\(.*\)$/-e\ git+https:\\/\\/github.com\\/openstack\\/tempest@\\1#egg=tempest/ | \
        > upper-constraints.txt && \
    git clone https://github.com/openstack/refstack-client.git /src/refstack-client && \
    (cd src/refstack-client && git checkout $REFSTACK_TAG) && \
    update-requirements -s --source /src/openstack-requirements /src/refstack-client/ && \
    pip install --no-cache-dir --src /src -cupper-constraints.txt \
        -chttps://git.opnfv.org/functest/plain/upper-constraints.txt?h=$BRANCH \
        -e/src/refstack-client && \
    git clone https://git.opendaylight.org/gerrit/p/integration/test.git /src/odl_test && \
    (cd src/odl_test && git checkout $ODL_TAG) && \
    git clone --depth 1 -b $FDS_TAG https://gerrit.opnfv.org/gerrit/fds /src/fds && \
    ln -s /src/tempest /src/refstack-client/.tempest && \
    virtualenv --system-site-packages /src/tempest/.venv && \
    rm -r upper-constraints.txt /src/refstack-client/.git /src/odl_test/.git /src/fds/.git && \
    apk del .build-deps
COPY testcases.yaml /usr/lib/python2.7/site-packages/functest/ci/testcases.yaml
CMD ["bash","-c","prepare_env start && run_tests -t all"]
>"icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> </div> <!-- Collect the nav links, forms, and other content for toggling --> <div class="collapse navbar-collapse navbar-ex1-collapse"> <ul class="nav navbar-nav"> {% for operation in operations %} <li><a href="#{{operation.method}}">{{operation.method}}</a></li> {% endfor %} </ul> </div><!-- /.navbar-collapse --> </div><!-- /.container --> </nav> <div class="container"> <div class="row"> <div class="col-lg-12"> <h1>{{path}}</h1> <p class='lead'>{{description if description != None}}</p> </div> <div class="col-lg-12"> {% for operation in operations %} <div class="panel panel-success" id='{{operation.method}}'> <div class="panel-heading"> <h3 class="panel-title">{{operation.method}}</h3> <p>{{operation.summary if operation.summary != None}}</p> </div> <div class="panel-body"> {% if operation.parameters %} <h4>Parameters</h4> <dl> {% for parameter in operation.parameters %} <dt> {{parameter.name}} {% if parameter.description %} - {{parameter.description}} {% endif %} </dt> <dd>Type: {{parameter.dataType}}</dd> <dd>Allow Multiple: {{parameter.allowMultiple}}</dd> <dd>Required: {{parameter.required}}</dd> {% endfor %} </dl> {% endif %} {% if operation.notes %} <p><strong>Implementation notes</strong>: {{operation.notes}}</p> {% endif %} {% if operation.responseClass %} <p><strong>Response Class</strong>: {{operation.responseClass}}</p> {% endif %} </div> </div> {% endfor %} </div> </div><!-- /.container --> <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script> <script src="//netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script> </body> </html>