-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconftest.py
75 lines (61 loc) · 1.85 KB
/
conftest.py
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
# -*- coding: utf-8 -*-
"""
Fixtures
"""
from random import randint
from pytest import fixture
from fudgeo.enumeration import SQLFieldType
from fudgeo.geopkg import Field, GeoPackage, SpatialReferenceSystem
from tests.geo import make_gpkg_geom_header
from tests.crs import WGS_1984_UTM_Zone_23N
@fixture(scope='session')
def header():
"""
Header for Envelope Code 0
"""
return lambda env_code: make_gpkg_geom_header(4326, env_code=env_code)
# End header function
@fixture
def setup_geopackage(tmp_path):
"""
Setup Basics
"""
path = tmp_path.joinpath('test.gpkg')
pkg = GeoPackage.create(path)
srs = SpatialReferenceSystem(
'WGS_1984_UTM_Zone_23N', 'EPSG', 32623, WGS_1984_UTM_Zone_23N)
pkg.add_spatial_reference(srs)
fields = (
Field('int.fld', SQLFieldType.integer),
Field('text_fld', SQLFieldType.text),
Field('test_fld_size', SQLFieldType.text, 100),
Field('test_bool', SQLFieldType.boolean),
Field('test_timestamp', SQLFieldType.timestamp))
yield path, pkg, srs, fields
if path.exists():
path.unlink()
# End setup_geopackage function
@fixture
def fields():
"""
Fields
"""
return [Field('AAA', SQLFieldType.integer),
Field('BBB', SQLFieldType.text, size=10),
Field('CCC', SQLFieldType.text),
Field('DDD', SQLFieldType.double),
Field('EEE', SQLFieldType.datetime),
Field('SELECT', SQLFieldType.timestamp)]
# End fields function
@fixture(scope='session')
def random_utm_coordinates():
"""
Random UTM Coordinates
"""
count = 10_000
eastings = [randint(300000, 700000) for _ in range(count)]
northings = [randint(0, 4000000) for _ in range(count)]
return eastings, northings
# End random_utm_coordinates function
if __name__ == '__main__': # pragma: no cover
pass