2021-09-22 10:57:03 +00:00
|
|
|
import os
|
|
|
|
|
|
|
|
from flask import Flask
|
|
|
|
import pytest
|
|
|
|
import yaml
|
2021-09-23 09:04:36 +00:00
|
|
|
from flask.testing import FlaskClient
|
2021-09-22 10:57:03 +00:00
|
|
|
|
2021-10-07 11:38:38 +00:00
|
|
|
from app.app import create_app
|
|
|
|
|
2021-09-22 10:57:03 +00:00
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def temp_config(tmpdir) -> str:
|
|
|
|
configfile = str(tmpdir.join('config.yml'))
|
|
|
|
vrd_path = tmpdir.mkdir('vrds')
|
|
|
|
dir_path = tmpdir.mkdir('pubs')
|
|
|
|
apache_config = tmpdir.join('apache.cfg')
|
|
|
|
apache_config.write('#start\n')
|
|
|
|
flagfile = tmpdir.join('apache_restart')
|
2021-09-22 11:55:44 +00:00
|
|
|
platform_path = tmpdir.mkdir('platform')
|
|
|
|
ws_module = 'wsap24.so'
|
|
|
|
platform_path.join(ws_module).write('\0')
|
2021-09-22 10:57:03 +00:00
|
|
|
|
|
|
|
with open(configfile, 'w') as f:
|
|
|
|
yaml.dump({
|
|
|
|
'apache_config': str(apache_config),
|
|
|
|
'vrd_path': str(vrd_path),
|
|
|
|
'dir_path': str(dir_path),
|
|
|
|
'url_base': '/1c',
|
2021-09-22 11:55:44 +00:00
|
|
|
'platform_path': str(platform_path),
|
|
|
|
'ws_module': ws_module,
|
2021-09-22 10:57:03 +00:00
|
|
|
'vrd_params': {
|
|
|
|
'debug': None,
|
|
|
|
'server_addr': 'localhost'
|
|
|
|
},
|
|
|
|
'infobases': {
|
|
|
|
'server_file': 'test/1CV8Clst.lst',
|
|
|
|
},
|
|
|
|
'apache_restart_flagfile': str(flagfile),
|
|
|
|
'url_prefix': 'http://localhost',
|
|
|
|
}, f)
|
|
|
|
return configfile
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def flask_app(temp_config) -> Flask:
|
2021-09-22 11:48:05 +00:00
|
|
|
os.environ['WEBPUB1C_CONFIG'] = temp_config
|
2021-10-07 11:38:38 +00:00
|
|
|
return create_app()
|
2021-09-22 10:57:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
2021-09-23 09:04:36 +00:00
|
|
|
def client(flask_app) -> FlaskClient:
|
2021-09-22 10:57:03 +00:00
|
|
|
return flask_app.test_client()
|
|
|
|
|
|
|
|
|
|
|
|
def test_index(client):
|
|
|
|
response = client.get('/')
|
|
|
|
assert b'<!DOCTYPE html>' in response.data
|
|
|
|
|
|
|
|
|
|
|
|
def test_api_index(client):
|
|
|
|
response = client.get('/api/v1/')
|
|
|
|
data = response.get_json()
|
|
|
|
assert data == ['infobases-available', 'infobases-all', 'publications',
|
|
|
|
'module', 'config', 'config-test', 'apache-restart']
|
2021-09-22 11:48:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_api_restart_flag(client):
|
|
|
|
endpoint = '/api/v1/apache-restart'
|
|
|
|
# test when flag not set
|
|
|
|
response = client.get(endpoint)
|
|
|
|
assert 404 == response.status_code
|
|
|
|
# set flag
|
|
|
|
response = client.put(endpoint)
|
|
|
|
assert 200 == response.status_code
|
|
|
|
# test when flag is set
|
|
|
|
response = client.get(endpoint)
|
|
|
|
assert 200 == response.status_code
|
|
|
|
|
2021-09-22 11:55:44 +00:00
|
|
|
|
|
|
|
def test_api_config_test(client):
|
|
|
|
response = client.get('/api/v1/config-test')
|
|
|
|
data = response.get_json()
|
|
|
|
assert data == {
|
|
|
|
'is_apache_cfg_valid': True,
|
|
|
|
'is_vrd_path_valid': True,
|
|
|
|
'is_dir_path_valid': True,
|
|
|
|
'is_url_base_valid': True,
|
|
|
|
'is_module_valid': True,
|
|
|
|
}
|
|
|
|
|
2021-09-22 12:02:45 +00:00
|
|
|
|
|
|
|
def test_api_config(client):
|
|
|
|
response = client.get('/api/v1/config')
|
|
|
|
data = response.get_json()
|
|
|
|
expected = ['apache_config', 'apache_restart_flagfile', 'infobases', 'dir_path', 'platform_path',
|
|
|
|
'url_base', 'url_prefix', 'vrd_params', 'vrd_path', 'ws_module']
|
|
|
|
expected.sort()
|
|
|
|
actual = list(data.keys())
|
|
|
|
actual.sort()
|
|
|
|
assert actual == expected
|
|
|
|
|
2021-09-22 12:19:02 +00:00
|
|
|
|
|
|
|
def test_api_module(client):
|
|
|
|
endpoint = '/api/v1/module'
|
|
|
|
# test when module not added
|
|
|
|
response = client.get(endpoint)
|
|
|
|
assert 404 == response.status_code
|
|
|
|
# add module
|
|
|
|
response = client.put(endpoint)
|
|
|
|
assert 200 == response.status_code
|
|
|
|
# test when module added
|
|
|
|
response = client.get(endpoint)
|
|
|
|
assert 200 == response.status_code
|
|
|
|
# try to add module again
|
|
|
|
response = client.put(endpoint)
|
|
|
|
assert 304 == response.status_code
|
|
|
|
|
2021-09-22 12:33:58 +00:00
|
|
|
|
|
|
|
def test_api_infobases_available(client):
|
|
|
|
response = client.get('/api/v1/infobases-available')
|
|
|
|
data = response.get_json()
|
|
|
|
expected = ['test1', 'test2', 'bpdemo']
|
|
|
|
expected.sort()
|
|
|
|
actual = data
|
|
|
|
actual.sort()
|
|
|
|
assert actual == expected
|
|
|
|
|
2021-09-22 12:49:58 +00:00
|
|
|
|
|
|
|
def test_api_publications(client):
|
|
|
|
response = client.get('/api/v1/publications')
|
|
|
|
data = response.get_json()
|
|
|
|
assert data == []
|
|
|
|
|
|
|
|
|
|
|
|
def test_api_publications_add(client):
|
|
|
|
endpoint = '/api/v1/publications'
|
|
|
|
# before add
|
|
|
|
response = client.get(endpoint)
|
|
|
|
data = response.get_json()
|
|
|
|
assert data == []
|
|
|
|
# add
|
|
|
|
response = client.put(path=endpoint, data={'name': 'test123'})
|
|
|
|
data = response.get_json()
|
|
|
|
assert data['message'] == 'created'
|
|
|
|
assert data['name'] == 'test123'
|
2021-09-22 12:53:24 +00:00
|
|
|
# add same publication
|
|
|
|
response = client.put(path=endpoint, data={'name': 'test123'})
|
|
|
|
assert response.status_code == 409
|
|
|
|
|
|
|
|
|
2021-09-24 12:23:30 +00:00
|
|
|
def test_api_publications_add_force(client):
|
|
|
|
endpoint = '/api/v1/publications'
|
|
|
|
# add
|
|
|
|
response = client.put(path=endpoint, data={'name': 'test123'})
|
|
|
|
assert response.status_code == 201
|
|
|
|
# add same publication
|
|
|
|
response = client.put(path=endpoint, data={'name': 'test123'})
|
|
|
|
assert response.status_code == 409
|
|
|
|
# add same publication with force
|
|
|
|
response = client.put(path=endpoint, data={'name': 'test123', 'force': True})
|
|
|
|
assert response.status_code == 201
|
|
|
|
|
|
|
|
|
2021-09-22 13:07:43 +00:00
|
|
|
def test_api_publications_add_and_list(client):
|
|
|
|
endpoint = '/api/v1/publications'
|
|
|
|
# add publications
|
|
|
|
client.put(path=endpoint, data={'name': 'test123'})
|
|
|
|
client.put(path=endpoint, data={'name': 'test456', 'file': '/path/to/infobase'})
|
|
|
|
# get list
|
|
|
|
response = client.get(endpoint)
|
|
|
|
data = response.get_json()
|
|
|
|
assert len(data) == 2
|
|
|
|
# test123
|
|
|
|
assert data[0]['name'] == 'test123'
|
|
|
|
assert data[0]['publicated']
|
|
|
|
assert data[0]['url'] == '/1c/test123'
|
|
|
|
assert not data[0]['is_file_infobase']
|
|
|
|
# test456 / file
|
|
|
|
assert data[1]['name'] == 'test456'
|
|
|
|
assert data[1]['publicated']
|
|
|
|
assert data[1]['url'] == '/1c/test456'
|
|
|
|
assert data[1]['is_file_infobase']
|
|
|
|
assert data[1]['infobase_filepath'] == '/path/to/infobase'
|
|
|
|
|
2021-09-22 13:17:19 +00:00
|
|
|
|
|
|
|
def test_api_publication_get(client):
|
|
|
|
# add publications
|
|
|
|
client.put(path='/api/v1/publications', data={'name': 'test123'})
|
|
|
|
# get
|
|
|
|
response = client.get('/api/v1/publications/test123')
|
|
|
|
data = response.get_json()
|
|
|
|
assert 'test123' in data
|
|
|
|
data = data['test123']
|
|
|
|
assert data['name'] == 'test123'
|
|
|
|
assert data['publicated']
|
|
|
|
assert data['url'] == '/1c/test123'
|
|
|
|
assert not data['is_file_infobase']
|
|
|
|
|
2021-09-22 13:28:36 +00:00
|
|
|
|
|
|
|
def test_api_publication_remove(client):
|
|
|
|
# add publications
|
|
|
|
client.put(path='/api/v1/publications', data={'name': 'test123'})
|
|
|
|
# get
|
|
|
|
response = client.get('/api/v1/publications/test123')
|
|
|
|
assert response.status_code == 200
|
|
|
|
# remove
|
|
|
|
response = client.delete('/api/v1/publications/test123')
|
|
|
|
assert response.status_code == 200
|
|
|
|
# get
|
|
|
|
response = client.get('/api/v1/publications/test123')
|
|
|
|
assert response.status_code == 404
|
|
|
|
|
2021-09-22 13:36:48 +00:00
|
|
|
|
|
|
|
def test_api_publication_set_url(client):
|
|
|
|
# add publications
|
|
|
|
client.put(path='/api/v1/publications', data={'name': 'test123', 'url': 'some/url'})
|
|
|
|
# get
|
|
|
|
response = client.get('/api/v1/publications/test123/url')
|
|
|
|
data = response.get_json()
|
|
|
|
assert data['url'] == '/1c/some/url'
|
|
|
|
# set url
|
|
|
|
response = client.post(path='/api/v1/publications/test123/url', data={'url': '/another/url'})
|
|
|
|
assert response.status_code == 200
|
|
|
|
# get
|
|
|
|
response = client.get('/api/v1/publications/test123/url')
|
|
|
|
data = response.get_json()
|
|
|
|
assert data['url'] == '/1c/another/url'
|
|
|
|
|
2021-09-23 08:19:09 +00:00
|
|
|
|
|
|
|
def test_api_infobases_all(client):
|
|
|
|
# add publications
|
|
|
|
client.put(path='/api/v1/publications', data={'name': 'test1'})
|
|
|
|
# get list
|
|
|
|
response = client.get('/api/v1/infobases-all')
|
|
|
|
data = response.get_json()
|
|
|
|
assert len(data) == 3
|
|
|
|
# bpdemo
|
|
|
|
assert data[0]['name'] == 'bpdemo'
|
|
|
|
assert not data[0]['publicated']
|
|
|
|
assert data[0]['url'] == ''
|
|
|
|
# test1
|
|
|
|
assert data[1]['name'] == 'test1'
|
|
|
|
assert data[1]['publicated']
|
|
|
|
assert data[1]['url'] == '/1c/test1'
|
|
|
|
assert not data[1]['is_file_infobase']
|
|
|
|
# test2
|
|
|
|
assert data[2]['name'] == 'test2'
|
|
|
|
assert not data[2]['publicated']
|
|
|
|
assert data[2]['url'] == ''
|