+++ /dev/null
-# 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.
-
-# This is a template with common files to be igonored, after clone make a copy to .gitignore
-# cp .gitignore-common .gitignore
-
-*.pyc
-*.pyo
-.tox
-
-#auto-ignore
-.gitignore
-
-#logs
-logs
-
-#pycharm
-.idea
-
-#eclipse
-.project
-.pydevproject
-.settings
-
-#vscode
-.vscode
-
-#local stuff files that end in ".local" or folders called "local"
-local
-osm_nbi/local
-osm_nbi/test/local
-
-#local stuff files that end in ".temp" or folders called "temp"
-*.temp
-osm_nbi/temp
-osm_nbi/test/temp
-
-#distribution and package generation
-build
-dist
-*.egg-info
-.eggs
-.temp-tox
-
-#vscode
-.vscode
-
-# Unit test / coverage reports
-.coverage
-cover
-coverage.xml
-nosetests.xml
-
--- /dev/null
+# Copyright Contributors to ETSI OSM
+#
+# 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.
+
+include:
+ - project: 'devops/cicd'
+ file: '/templates/osm-base.yml'
-# Copyright 2018 Telefonica S.A.
-#
# 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
# implied.
# See the License for the specific language governing permissions and
# limitations under the License.
-
-# This Dockerfile is intented for devops and deb package generation
+########################################################################################
+# This Dockerfile is intented for devops testing and deb package generation
+#
+# To run stage 2 locally:
+#
+# docker build -t stage2 .
+# docker run -ti -v `pwd`:/work -w /work --entrypoint /bin/bash stage2
+# devops-stages/stage-test.sh
+# devops-stages/stage-build.sh
#
-# Use Dockerfile.local for running osm/NBI in a docker container from source
-# Use Dockerfile.fromdeb for running osm/NBI in a docker container from last stable package
-
FROM ubuntu:18.04
-RUN apt-get update && apt-get -y install wget git make python python3 \
- libcurl4-gnutls-dev libgnutls28-dev tox python3-dev python3-pip \
- debhelper python-setuptools python-all python3-all apt-utils \
- python-magic && \
- DEBIAN_FRONTEND=noninteractive pip3 install -U stdeb setuptools-version-command
+RUN DEBIAN_FRONTEND=noninteractive apt-get update && \
+ DEBIAN_FRONTEND=noninteractive apt-get -y install \
+ debhelper \
+ git \
+ python3 \
+ python3-all \
+ python3-dev \
+ python3-setuptools
+
+RUN python3 -m easy_install pip==21.0.1
+RUN pip3 install tox==3.22.0
-# Uncomment this block to generate automatically a debian package and show info
-# # Set the working directory to /app
-# WORKDIR /app
-# # Copy the current directory contents into the container at /app
-# ADD . /app
-# CMD /app/devops-stages/stage-build.sh && find -name "*.deb" -exec dpkg -I {} ";"
+RUN DEBIAN_FRONTEND=noninteractive apt-get -y install wget
+ENV LC_ALL C.UTF-8
+ENV LANG C.UTF-8
-# 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
+##
+# Copyright ETSI
#
-# http://www.apache.org/licenses/LICENSE-2.0
+# 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.
+# 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.
+##
+
+########################################################################
+
+FROM ubuntu:18.04 as INSTALL
+
+WORKDIR /build
+
+RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
+ DEBIAN_FRONTEND=noninteractive apt-get --yes install \
+ gcc git python3 python3-dev python3-venv python3-pip \
+ python3-setuptools wget && \
+ python3 -m pip install -U pip build
+
+COPY . /build
-# This creates osm/NBI docker from local NBI source code
+RUN git clone https://osm.etsi.org/gerrit/osm/common.git
+RUN git clone https://osm.etsi.org/gerrit/osm/IM.git
-FROM ubuntu:18.04
+RUN python3 -m pip install \
+ -r requirements.txt \
+ -r common/requirements.txt \
+ -r IM/requirements.txt
-# Set the working directory to /app
-WORKDIR /app/NBI
+RUN python3 -m build /build/common && \
+ python3 -m pip install /build/common/dist/*.whl
-RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
+RUN python3 -m build /build/IM && \
+ python3 -m pip install /build/IM/dist/*.whl
-RUN apt-get update && apt-get install -y git python3 \
- python3-pymongo python3-yaml python3-pip python3-keystoneclient \
- && python3 -m pip install pip --upgrade \
- && python3 -m pip install aiokafka dataclasses aiohttp cherrypy==18.1.2 keystoneauth1 requests jsonschema==3.2.0 \
- && python3 -m pip install tacacs_plus \
- && mkdir -p /app/storage/kafka && mkdir -p /app/log
+RUN python3 -m build /build && \
+ python3 -m pip install /build/dist/*.whl
-# OSM_COMMON
-RUN git -C /app clone https://osm.etsi.org/gerrit/osm/common.git \
- && python3 -m pip install -e /app/common
-# && cd common && python3 setup.py develop && cd ..
-# && pip3 install -U -r requirements.txt \
-# && cd ..
-# OSM_IM
-RUN git -C /app clone https://osm.etsi.org/gerrit/osm/IM \
- && python3 -m pip install /app/IM
+FROM ubuntu:18.04 as FINAL
+
+RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
+ DEBIAN_FRONTEND=noninteractive apt-get --yes install python3-minimal
+
+COPY --from=INSTALL /usr/lib/python3/dist-packages /usr/lib/python3/dist-packages
+COPY --from=INSTALL /usr/local/lib/python3.6/dist-packages /usr/local/lib/python3.6/dist-packages
+
+RUN mkdir -p /app/storage/kafka && mkdir -p /app/log
+
+WORKDIR /app/osm_nbi
EXPOSE 9999
-LABEL Maintainer="alfonso.tiernosepulveda@telefonica.com" \
- Description="This implements a north bound interface for OSM" \
- Version="1.0" \
- Author="Alfonso Tierno"
+RUN cp -R /usr/local/lib/python3.6/dist-packages/osm_nbi/html_public /app/osm_nbi/html_public
+RUN cp /usr/local/lib/python3.6/dist-packages/osm_nbi/nbi.cfg /app/osm_nbi/
+RUN cp -R /usr/local/lib/python3.6/dist-packages/osm_nbi/http /app/osm_nbi/
# Used for local storage
VOLUME /app/storage
# The following ENV can be added with "docker run -e xxx' to configure
# server
-ENV OSMNBI_SOCKET_HOST 0.0.0.0
-ENV OSMNBI_SOCKET_PORT 9999
-ENV OSMNBI_SERVER_SSL_CERTIFICATE /app/NBI/osm_nbi/http/cert.pem
-ENV OSMNBI_SERVER_SSL_PRIVATE_KEY /app/NBI/osm_nbi/http/privkey.pem
+ENV OSMNBI_SOCKET_HOST 0.0.0.0
+ENV OSMNBI_SOCKET_PORT 9999
+ENV OSMNBI_SERVER_SSL_CERTIFICATE /app/osm_nbi/http/cert.pem
+ENV OSMNBI_SERVER_SSL_PRIVATE_KEY /app/osm_nbi/http/privkey.pem
+
# storage
-ENV OSMNBI_STORAGE_DRIVER local
-ENV OSMNBI_STORAGE_PATH /app/storage
-#ENV OSMNBI_STORAGE_DRIVER mongo
-#ENV OSMNBI_STORAGE_URI mongodb://mongo:27017
-#ENV OSMNBI_STORAGE_COLLECTION files
+ENV OSMNBI_STORAGE_PATH /app/storage
+
# database
-ENV OSMNBI_DATABASE_DRIVER mongo
-ENV OSMNBI_DATABASE_HOST mongo
-ENV OSMNBI_DATABASE_PORT 27017
-# ENV OSMNBI_DATABASE_USER xxx
-# ENV OSMNBI_DATABASE_PASSWORD xxx
-# ENV OSMNBI_DATABASE_COMMONKEY xxx
+ENV OSMNBI_DATABASE_DRIVER mongo
+ENV OSMNBI_DATABASE_URI mongodb://mongo:27017
+#ENV OSMNBI_DATABASE_HOST mongo
+#ENV OSMNBI_DATABASE_PORT 27017
+
# web
-ENV OSMNBI_STATIC_DIR /app/NBI/osm_nbi/html_public
-# logs
-# ENV OSMNBI_LOG_FILE /app/log/nbi.log
-ENV OSMNBI_LOG_LEVEL DEBUG
-# ENV OSMNBI_SERVER_ENABLE_TEST False
+ENV OSMNBI_STATIC_DIR /app/osm_nbi/html_public
# message
-ENV OSMNBI_MESSAGE_DRIVER kafka
-ENV OSMNBI_MESSAGE_HOST kafka
-ENV OSMNBI_MESSAGE_PORT 9092
+ENV OSMNBI_MESSAGE_DRIVER kafka
+ENV OSMNBI_MESSAGE_HOST kafka
+ENV OSMNBI_MESSAGE_PORT 9092
+
+# logs
+ENV OSMNBI_LOG_FILE /app/log/nbi.log
+ENV OSMNBI_LOG_LEVEL DEBUG
+
# authentication
ENV OSMNBI_AUTHENTICATION_BACKEND internal
#ENV OSMNBI_AUTHENTICATION_BACKEND keystone
-#ENV OSMNBI_AUTHENTICATION_AUTH_URL http://keystone:5000/v3
+#ENV OSMNBI_AUTHENTICATION_AUTH_URL keystone
#ENV OSMNBI_AUTHENTICATION_AUTH_PORT 5000
-
-# DOMAIN_NAME can be a single value or a comma separated list of values. The first value is for internal domain
-# meanwhile the rest ones are external identity services as e.g. LDAP
-# for the case of USER_DOMAIN_NAME each item can be suffixed with ":ro" (read only). In this case NBI will reject any
-# operationi of create/update/delete users in this domain. Do not suffix PROJECT_DOMAIN_NAME
#ENV OSMNBI_AUTHENTICATION_USER_DOMAIN_NAME default
#ENV OSMNBI_AUTHENTICATION_PROJECT_DOMAIN_NAME default
#ENV OSMNBI_AUTHENTICATION_SERVICE_USERNAME nbi
#ENV OSMNBI_AUTHENTICATION_SERVICE_PASSWORD nbi
#ENV OSMNBI_AUTHENTICATION_SERVICE_PROJECT service
-# RBAC
-ENV OSMNBI_RBAC_RESOURCES_TO_OPERATIONS /app/NBI/osm_nbi/resources_to_operations.yml
-ENV OSMNBI_RBAC_ROLES_TO_OPERATIONS /app/NBI/osm_nbi/roles_to_operations.yml
-# prometheus
+
+#prometheus
ENV OSMNBI_PROMETHEUS_HOST prometheus
ENV OSMNBI_PROMETHEUS_PORT 9090
-# Copy the current directory contents into the container at /app
-ADD . /app/NBI
-
# Run app.py when the container launches
-CMD ["python3", "-m", "osm_nbi.nbi"]
-
+CMD ["python3", "-u", "-m", "osm_nbi.nbi"]
##
include README.rst
-recursive-include osm_nbi *.py *.sh *.cfg *.yml
+recursive-include osm_nbi *.py *.sh *.cfg *.yml *.txt
recursive-include osm_nbi/html_public *
recursive-include osm_nbi/http *
recursive-include devops-stages *
+++ /dev/null
-# Copyright 2018 Telefonica S.A.
-#
-# 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.
-
-all: clean package
-
-clean:
- rm -rf dist deb_dist osm_nbi-*.tar.gz osm_nbi.egg-info .eggs .temp-tox
-
-package:
- python3 setup.py --command-packages=stdeb.command sdist_dsc
- cp debian/python3-osm-nbi.postinst deb_dist/osm-nbi*/debian
- # cd deb_dist/osm-nbi*/debian && echo "osm-common python3-osm-common" > py3dist-overrides
- # cd deb_dist/osm-nbi*/debian && echo "pip3 python3-pip" >> py3dist-overrides
- cd deb_dist/osm-nbi*/ && dpkg-buildpackage -rfakeroot -uc -us
-
-
# See the License for the specific language governing permissions and
# limitations under the License.
-make clean
-# tox -e build
-make package
+rm -rf dist deb_dist osm*.tar.gz *.egg-info .eggs
+
+tox -e dist
\ No newline at end of file
# See the License for the specific language governing permissions and
# limitations under the License.
-rm -f nosetests.xml
-tox # flake8 unittest
-
+OUTPUT=$(TOX_PARALLEL_NO_SPINNER=1 tox --parallel=auto)
+printf "$OUTPUT"
--- /dev/null
+# 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.
+
+git+https://osm.etsi.org/gerrit/osm/common.git@v9.0#egg=osm-common
+-r https://osm.etsi.org/gitweb/?p=osm/common.git;a=blob_plain;f=requirements.txt;hb=v9.0
+
+git+https://osm.etsi.org/gerrit/osm/IM.git@v9.0#egg=osm-im
+-r https://osm.etsi.org/gitweb/?p=osm/N2VC.git;a=blob_plain;f=requirements.txt;hb=v9.0
--- /dev/null
+aiokafka==0.7.0
+ # via -r https://osm.etsi.org/gitweb/?p=osm/common.git;a=blob_plain;f=requirements.txt;hb=v9.0
+bitarray==1.8.1
+ # via
+ # -r https://osm.etsi.org/gitweb/?p=osm/IM.git;a=blob_plain;f=requirements.txt;hb=v9.0
+ # pyangbind
+dataclasses==0.6
+ # via -r https://osm.etsi.org/gitweb/?p=osm/common.git;a=blob_plain;f=requirements.txt;hb=v9.0
+enum34==1.1.10
+ # via
+ # -r https://osm.etsi.org/gitweb/?p=osm/IM.git;a=blob_plain;f=requirements.txt;hb=v9.0
+ # pyangbind
+kafka-python==2.0.2
+ # via
+ # -r https://osm.etsi.org/gitweb/?p=osm/common.git;a=blob_plain;f=requirements.txt;hb=v9.0
+ # aiokafka
+lxml==4.6.3
+ # via
+ # -r https://osm.etsi.org/gitweb/?p=osm/IM.git;a=blob_plain;f=requirements.txt;hb=v9.0
+ # pyang
+ # pyangbind
+git+https://osm.etsi.org/gerrit/osm/common.git@v9.0#egg=osm-common
+ # via -r requirements-dev.in
+git+https://osm.etsi.org/gerrit/osm/IM.git@v9.0#egg=osm-im
+ # via -r requirements-dev.in
+pyang==2.4.0
+ # via
+ # -r https://osm.etsi.org/gitweb/?p=osm/IM.git;a=blob_plain;f=requirements.txt;hb=v9.0
+ # pyangbind
+pyangbind==0.8.1
+ # via -r https://osm.etsi.org/gitweb/?p=osm/IM.git;a=blob_plain;f=requirements.txt;hb=v9.0
+pycrypto==2.6.1
+ # via -r https://osm.etsi.org/gitweb/?p=osm/common.git;a=blob_plain;f=requirements.txt;hb=v9.0
+pymongo==3.11.3
+ # via -r https://osm.etsi.org/gitweb/?p=osm/common.git;a=blob_plain;f=requirements.txt;hb=v9.0
+pyyaml==5.4.1
+ # via
+ # -r https://osm.etsi.org/gitweb/?p=osm/IM.git;a=blob_plain;f=requirements.txt;hb=v9.0
+ # -r https://osm.etsi.org/gitweb/?p=osm/common.git;a=blob_plain;f=requirements.txt;hb=v9.0
+regex==2021.3.17
+ # via
+ # -r https://osm.etsi.org/gitweb/?p=osm/IM.git;a=blob_plain;f=requirements.txt;hb=v9.0
+ # pyangbind
+six==1.15.0
+ # via
+ # -r https://osm.etsi.org/gitweb/?p=osm/IM.git;a=blob_plain;f=requirements.txt;hb=v9.0
+ # pyangbind
+# Copyright 2018 Telefonica S.A.
+#
+# 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.
--- /dev/null
+# Copyright ETSI Contributors and Others.
+#
+# 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.
+
+stdeb
+setuptools-version-command
\ No newline at end of file
--- /dev/null
+setuptools-version-command==2.2
+ # via -r requirements-dist.in
+stdeb==0.10.0
+ # via -r requirements-dist.in
+
+# The following packages are considered to be unsafe in a requirements file:
+# setuptools
+# Copyright 2018 Telefonica S.A.
+#
+# 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.
+
+
--- /dev/null
+# 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.
+
+aiohttp>=2.3.10,<=3.6.2
+aioresponses
+asynctest
+coverage
+nose2
+requests==2.25.1
+pyang
--- /dev/null
+aiohttp==3.6.2
+ # via
+ # -r requirements-test.in
+ # aioresponses
+aioresponses==0.7.2
+ # via -r requirements-test.in
+async-timeout==3.0.1
+ # via aiohttp
+asynctest==0.13.0
+ # via -r requirements-test.in
+attrs==20.3.0
+ # via aiohttp
+certifi==2020.12.5
+ # via requests
+chardet==3.0.4
+ # via
+ # aiohttp
+ # requests
+coverage==5.5
+ # via
+ # -r requirements-test.in
+ # nose2
+idna==2.10
+ # via
+ # requests
+ # yarl
+lxml==4.6.3
+ # via pyang
+multidict==4.7.6
+ # via
+ # aiohttp
+ # yarl
+nose2==0.10.0
+ # via -r requirements-test.in
+pyang==2.4.0
+ # via -r requirements-test.in
+requests==2.25.1
+ # via -r requirements-test.in
+six==1.15.0
+ # via nose2
+urllib3==1.26.4
+ # via requests
+yarl==1.6.3
+ # via aiohttp
+# Copyright 2018 Telefonica S.A.
+#
+# 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.
+
+
--- /dev/null
+# 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.
+
+aiohttp>=2.3.10,<=3.6.2
+CherryPy>=18.1.2
+jsonschema>=3.2.0
+python-keystoneclient
+pyyaml
+requests
+tacacs_plus
-# 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
+aiohttp==3.6.2
+ # via -r requirements.in
+async-timeout==3.0.1
+ # via aiohttp
+attrs==20.3.0
+ # via
+ # aiohttp
+ # jsonschema
+certifi==2020.12.5
+ # via requests
+chardet==3.0.4
+ # via
+ # aiohttp
+ # requests
+cheroot==8.5.2
+ # via cherrypy
+cherrypy==18.6.0
+ # via -r requirements.in
+debtcollector==2.2.0
+ # via
+ # oslo.config
+ # oslo.utils
+ # python-keystoneclient
+idna==2.10
+ # via
+ # requests
+ # yarl
+iso8601==0.1.14
+ # via
+ # keystoneauth1
+ # oslo.utils
+jaraco.classes==3.2.1
+ # via jaraco.collections
+jaraco.collections==3.2.0
+ # via cherrypy
+jaraco.functools==3.2.1
+ # via
+ # cheroot
+ # jaraco.text
+ # tempora
+jaraco.text==3.5.0
+ # via jaraco.collections
+jsonschema==3.2.0
+ # via -r requirements.in
+keystoneauth1==4.3.1
+ # via python-keystoneclient
+more-itertools==8.7.0
+ # via
+ # cheroot
+ # cherrypy
+ # jaraco.classes
+ # jaraco.functools
+msgpack==1.0.2
+ # via oslo.serialization
+multidict==4.7.6
+ # via
+ # aiohttp
+ # yarl
+netaddr==0.8.0
+ # via
+ # oslo.config
+ # oslo.utils
+netifaces==0.10.9
+ # via oslo.utils
+os-service-types==1.7.0
+ # via keystoneauth1
+oslo.config==8.5.0
+ # via python-keystoneclient
+oslo.i18n==5.0.1
+ # via
+ # oslo.config
+ # oslo.utils
+ # python-keystoneclient
+oslo.serialization==4.1.0
+ # via python-keystoneclient
+oslo.utils==4.8.0
+ # via
+ # oslo.serialization
+ # python-keystoneclient
+packaging==20.9
+ # via oslo.utils
+pbr==5.5.1
+ # via
+ # debtcollector
+ # keystoneauth1
+ # os-service-types
+ # oslo.i18n
+ # oslo.serialization
+ # oslo.utils
+ # python-keystoneclient
+ # stevedore
+portend==2.7.1
+ # via cherrypy
+pyparsing==2.4.7
+ # via
+ # oslo.utils
+ # packaging
+pyrsistent==0.17.3
+ # via jsonschema
+python-keystoneclient==4.2.0
+ # via -r requirements.in
+pytz==2021.1
+ # via
+ # oslo.serialization
+ # oslo.utils
+ # tempora
+pyyaml==5.4.1
+ # via
+ # -r requirements.in
+ # oslo.config
+requests==2.25.1
+ # via
+ # -r requirements.in
+ # keystoneauth1
+ # oslo.config
+ # python-keystoneclient
+rfc3986==1.4.0
+ # via oslo.config
+six==1.15.0
+ # via
+ # cheroot
+ # debtcollector
+ # jsonschema
+ # keystoneauth1
+ # oslo.i18n
+ # python-keystoneclient
+ # tacacs-plus
+stevedore==3.3.0
+ # via
+ # keystoneauth1
+ # oslo.config
+ # python-keystoneclient
+tacacs-plus==2.6
+ # via -r requirements.in
+tempora==4.0.1
+ # via portend
+urllib3==1.26.4
+ # via requests
+wrapt==1.12.1
+ # via debtcollector
+yarl==1.6.3
+ # via aiohttp
+zc.lockfile==2.0
+ # via cherrypy
+# The following packages are considered to be unsafe in a requirements file:
+# setuptools
+# Copyright 2018 Telefonica S.A.
+#
+# 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.
-
-CherryPy>=18.1.2
-jsonschema>=3.2.0
-PyYAML
-python-keystoneclient
-requests
-git+https://osm.etsi.org/gerrit/osm/common.git@v9.0#egg=osm-common
-git+https://osm.etsi.org/gerrit/osm/IM.git@v9.0#egg=osm-im
-aiohttp>=2.3.10,<=3.6.2
-tacacs_plus
+# 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
# version=VERSION,
# python_requires='>3.5.0',
author='ETSI OSM',
- author_email='alfonso.tiernosepulveda@telefonica.com',
- maintainer='Alfonso Tierno',
- maintainer_email='alfonso.tiernosepulveda@telefonica.com',
+ author_email='osmsupport@etsi.org',
+ maintainer='ETSI OSM',
+ maintainer_email='osmsupport@etsi.org',
url='https://osm.etsi.org/gitweb/?p=osm/NBI.git;a=summary',
license='Apache 2.0',
packages=find_packages(exclude=["temp", "local"]),
include_package_data=True,
- # exclude_package_data={'': ['osm_nbi/local', 'temp']},
- # data_files=[('/etc/osm/', ['osm_nbi/nbi.cfg']),
- # ('/etc/systemd/system/', ['osm_nbi/osm-nbi.service']),
- # ],
- install_requires=[
- 'CherryPy>=18.1.2',
- 'osm-common',
- 'jsonschema>=3.2.0',
- 'PyYAML',
- 'osm-im',
- 'python-keystoneclient',
- 'requests',
- 'aiohttp>=2.3.10,<=3.6.2',
- ],
setup_requires=['setuptools-version-command'],
)
[DEFAULT]
X-Python3-Version : >= 3.5
-Depends3 : python3-osm-common, python3-osm-im, python3-cherrypy3, python3-yaml, python3-jsonschema,
- python3-keystoneclient, python3-pip, python3-requests, python3-aiohttp
+++ /dev/null
-# 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.
-
-# flake8<3.0
-# mock
-# pyangbind
-pyang
-aioresponses
-asynctest
-
# See the License for the specific language governing permissions and
# limitations under the License.
+
[tox]
-envlist = cover, flake8
+envlist = black, cover, flake8, pylint, safety
+
+[tox:jenkins]
+toxworkdir = /tmp/.tox
[testenv]
usedevelop = True
basepython = python3
-install_command = python3 -m pip install -r requirements.txt -U {opts} {packages}
+setenv = VIRTUAL_ENV={envdir}
+ PYTHONDONTWRITEBYTECODE = 1
+deps = -r{toxinidir}/requirements.txt
+
+#######################################################################################
+[testenv:black]
+deps = black
+skip_install = true
+commands =
+ - black --check --diff osm_nbi/
+ - black --check --diff setup.py
+
+#######################################################################################
[testenv:cover]
-basepython = python3
-deps =
- nose2
- nose2-cov
- coverage
- -rrequirements.txt
- -rtest-requirements.txt
+deps = {[testenv]deps}
+ -r{toxinidir}/requirements-dev.txt
+ -r{toxinidir}/requirements-test.txt
commands =
- coverage erase
- nose2 -C --coverage osm_nbi --plugin nose2.plugins.junitxml -s osm_nbi/tests
- coverage report --omit='*tests*'
- coverage html -d ./cover --omit='*tests*'
- coverage xml -o coverage.xml --omit='*tests*'
+ sh -c 'rm -f nosetests.xml'
+ coverage erase
+ nose2 -C --coverage osm_nbi -s osm_nbi/tests
+ coverage report --omit='*tests*'
+ coverage html -d ./cover --omit='*tests*'
+ coverage xml -o coverage.xml --omit=*tests*
+whitelist_externals = sh
+
+#######################################################################################
[testenv:flake8]
-basepython = python3
-deps =
- flake8
- -rrequirements.txt
+deps = flake8
commands =
- flake8 osm_nbi setup.py --max-line-length 120 \
- --exclude .svn,CVS,.gz,.git,__pycache__,.tox,local,temp,osm_im,.temp-tox --ignore W291,W293,E226,E402,W504
+ - flake8 osm_nbi/ setup.py
-[testenv:build]
-basepython = python3
-deps = stdeb
- setuptools-version-command
-commands = python3 setup.py --command-packages=stdeb.command bdist_deb
-[testenv:unittest]
-basepython = python3
-deps = asynctest
- aioresponses
-commands = python3 -m unittest discover osm_nbi/tests -v
+#######################################################################################
+[testenv:pylint]
+deps = {[testenv]deps}
+ -r{toxinidir}/requirements-dev.txt
+ -r{toxinidir}/requirements-test.txt
+ pylint
+commands =
+ - pylint -E osm_nbi
+
+
+#######################################################################################
+[testenv:safety]
+setenv =
+ LC_ALL=C.UTF-8
+ LANG=C.UTF-8
+deps = {[testenv]deps}
+ safety
+commands =
+ - safety check --full-report
+
+
+#######################################################################################
+[testenv:pip-compile]
+deps = pip-tools==5.5.0
+commands =
+ - sh -c 'for file in requirements*.in ; do pip-compile -rU --no-header $file ;\
+ out=`echo $file | sed "s/.in/.txt/"` ; \
+ head -16 tox.ini >> $out ;\
+ done'
+whitelist_externals = sh
+
+
+#######################################################################################
+[testenv:dist]
+deps = {[testenv]deps}
+ -r{toxinidir}/requirements-dist.txt
+
+# In the commands, we copy the requirements.txt to be presented as a source file (.py)
+# so it gets included in the .deb package for others to consume
+commands =
+ sh -c 'cp requirements.txt osm_nbi/requirements.txt'
+ python3 setup.py --command-packages=stdeb.command sdist_dsc
+ sh -c 'cd deb_dist/osm-nbi*/ && dpkg-buildpackage -rfakeroot -uc -us'
+ sh -c 'rm osm_nbi/requirements.txt'
+whitelist_externals = sh
+
+#######################################################################################
+[flake8]
+ignore =
+ W291,
+ W293,
+ W503,
+ E123,
+ E125,
+ E226,
+ E241
+exclude =
+ .git,
+ __pycache__,
+ .tox,
+ test_mznmodels.py
+max-line-length = 120
+show-source = True
+builtins = _