summaryrefslogtreecommitdiff
path: root/yarns/lib.py
blob: 32f33adc3f8b723ccedd4ccc85ad122d34f47a0d (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
84
85
86
87
88
89
90
91
92
93
94
95
96
# Copyright 2017 Lars Wirzenius

import errno
import json
import os
import random
import socket
import sys
import time

import cliapp
import requests

from yarnutils import *


srcdir = os.environ['SRCDIR']
datadir = os.environ['DATADIR']
vars = Variables(datadir)


def random_free_port():
    MAX = 1000
    for i in range(MAX):
        port = random.randint(1025, 2**15-1)
        s = socket.socket()
        try:
            s.bind(('0.0.0.0', port))
        except OSError as e:
            if e.errno == errno.EADDRINUSE:
                continue
            print('cannot find a random free port')
            raise
        s.close()
        break
    print('picked port', port)
    return port


def wait_for_port(port):
    MAX = 5
    t = time.time()
    while time.time() < t + MAX:
        try:
            s = socket.socket()
            s.connect(('127.0.0.1', port))
        except OSError as e:
            raise
        else:
            return

def write(filename, data):
    with open(filename, 'w') as f:
        f.write(data)


def cat(filename):
    MAX_CAT_WAIT = 5  # in seconds
    t = time.time()
    while time.time() < t + MAX_CAT_WAIT:
        if os.path.exists(filename):
            return open(filename, 'r').read()


def get(url, token):
    headers = {
        'Authorization': 'Bearer {}'.format(token),
    }
    r = requests.get(url, headers=headers)
    return r.status_code, r.headers['Content-Type'], r.text


def post(url, body_text, token):
    headers = {
        'Authorization': 'Bearer {}'.format(token),
        'Content-Type': 'application/json',
    }
    r = requests.post(url, headers=headers, data=body_text)
    return r.status_code, r.headers['Content-Type'], r.text


def put(url, body_text, token):
    headers = {
        'Authorization': 'Bearer {}'.format(token),
        'Content-Type': 'application/json',
    }
    r = requests.put(url, headers=headers, data=body_text)
    return r.status_code, r.headers['Content-Type'], r.text


def delete(url, token):
    headers = {
        'Authorization': 'Bearer {}'.format(token),
    }
    r = requests.delete(url, headers=headers)
    return r.status_code, r.headers['Content-Type'], r.text