2018-09-03 22:23:51 +02:00
|
|
|
import random
|
2018-09-02 21:48:12 +02:00
|
|
|
import datetime as dt
|
2018-09-03 22:23:51 +02:00
|
|
|
|
2018-09-03 09:19:27 +02:00
|
|
|
from pycalver import version
|
2018-09-02 21:48:12 +02:00
|
|
|
|
|
|
|
|
|
2018-09-03 09:19:27 +02:00
|
|
|
def test_current_calver():
|
|
|
|
|
v = version.current_calver()
|
|
|
|
|
assert len(v) == 7
|
|
|
|
|
assert v.startswith("v")
|
|
|
|
|
assert v[1:].isdigit()
|
2018-09-02 21:48:12 +02:00
|
|
|
|
|
|
|
|
|
2018-09-03 22:23:51 +02:00
|
|
|
def test_bump_beta():
|
2018-11-06 21:45:33 +01:00
|
|
|
calver = version.current_calver()
|
2018-09-03 22:23:51 +02:00
|
|
|
cur_version = calver + ".0001-beta"
|
2018-11-06 21:45:33 +01:00
|
|
|
assert cur_version < version.incr(cur_version)
|
|
|
|
|
assert version.incr(cur_version).endswith("-beta")
|
|
|
|
|
assert version.incr(cur_version, release="alpha").endswith("-alpha")
|
|
|
|
|
assert version.incr(cur_version, release="final").endswith("0002")
|
2018-09-03 22:23:51 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_bump_final():
|
2018-11-06 21:45:33 +01:00
|
|
|
calver = version.current_calver()
|
2018-09-03 22:23:51 +02:00
|
|
|
cur_version = calver + ".0001"
|
2018-11-06 21:45:33 +01:00
|
|
|
assert cur_version < version.incr(cur_version)
|
|
|
|
|
assert version.incr(cur_version, release="alpha").endswith("-alpha")
|
|
|
|
|
assert version.incr(cur_version, release="final").endswith("0002")
|
|
|
|
|
assert version.incr(cur_version).endswith("0002")
|
2018-09-03 22:23:51 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_bump_future():
|
2018-11-06 21:45:33 +01:00
|
|
|
future_date = dt.datetime.today() + dt.timedelta(days=300)
|
2018-09-03 22:23:51 +02:00
|
|
|
future_calver = future_date.strftime("v%Y%m")
|
2018-11-06 21:45:33 +01:00
|
|
|
cur_version = future_calver + ".0001"
|
|
|
|
|
assert cur_version < version.incr(cur_version)
|
2018-09-03 22:23:51 +02:00
|
|
|
|
|
|
|
|
|
2018-11-06 21:45:33 +01:00
|
|
|
def test_bump_random(monkeypatch):
|
|
|
|
|
cur_date = dt.date.today()
|
2018-09-03 22:23:51 +02:00
|
|
|
cur_version = cur_date.strftime("v%Y%m") + ".0001-dev"
|
|
|
|
|
|
|
|
|
|
def _mock_current_calver():
|
|
|
|
|
return cur_date.strftime("v%Y%m")
|
|
|
|
|
|
2018-11-06 21:45:33 +01:00
|
|
|
monkeypatch.setattr(version, 'current_calver', _mock_current_calver)
|
|
|
|
|
|
|
|
|
|
for i in range(1000):
|
|
|
|
|
cur_date += dt.timedelta(days=int((1 + random.random()) ** 10))
|
|
|
|
|
new_version = version.incr(
|
|
|
|
|
cur_version, release=random.choice([None, "alpha", "beta", "rc", 'final'])
|
|
|
|
|
)
|
|
|
|
|
assert cur_version < new_version
|
|
|
|
|
cur_version = new_version
|