summaryrefslogtreecommitdiffstats
path: root/kubernetes/oof/charts/oof-cmso/charts/oof-cmso-service/resources/config/mock.py
blob: b678a4e8d44239a09d50806a2692c8c1a8958355 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
 # -------------------------------------------------------------------------
 #   Copyright (c) 2019 AT&T Intellectual Property
 #
 #   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.
 #
 # -------------------------------------------------------------------------
 #

from flask import Flask
from flask import request
from flask import Response
from flask import json
from flask import send_from_directory
import requests
from threading import Thread
import time

import os
import fnmatch
import re
import time
import datetime

app = Flask(__name__)
ROOT_MOCK_DIR = os.path.dirname(os.path.abspath(__file__))
DATA_DIR =   os.path.join(ROOT_MOCK_DIR, "data")
global requestNum
requestNum = 1

########################################################################
########################################################################
@app.route('/onap/so/infra/orchestrationRequests/v7/schedule/<VNFNAME>', methods=['GET', 'POST'])
def soSchedule(VNFNAME):
    if request.method == 'POST':
        testid = request.headers.environ["HTTP_X_TRANSACTIONID"]
        response = {
            "status" : "202",
            "entity" : {
                "requestReferences" : {
                    "requestId" : "000001"
                    }
                }
            }
        resp = Response(json.dumps(response), 200, mimetype='application/json')
        return resp


    else :
        return "Helloooooo!!!!"

########################################################################
########################################################################
@app.route('/onap/so/infra/orchestrationRequests/v7/<REQUESTID>', methods=['GET'])
def soStatus(REQUESTID):
    response = {"request" : { "requestStatus" : {
        "requestState" : "COMPLETE",
        "statusMessage" : "Done.",
        "percentProgress" : 100,
        "finishTime" : ""
        }}}
    now = datetime.datetime.utcnow()
    #response["finishTime"] = now.strftime("%Y-%m-%dT%H:%M:%SZ")
    response["request"]["requestStatus"]["finishTime"] = now.strftime("%a, %d %b %Y %H:%M:%S GMT")
    resp = Response(json.dumps(response), 200, mimetype='application/json')

    return resp

########################################################################
########################################################################
if __name__ == "__main__":
    app.run(host= '0.0.0.0',port=5000)
    #app.run()