IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an email to s dot adaszewski at gmail dot com. User accounts are meant only to report issues and/or generate pull requests. This is a purpose-specific Git hosting for ADARED projects. Thank you for your understanding!
소스 검색

Start unit tests for jails.

master
부모
커밋
0f4d3ab7f9
1개의 변경된 파일28개의 추가작업 그리고 0개의 파일을 삭제
  1. +28
    -0
      tests/test_jail.py

+ 28
- 0
tests/test_jail.py 파일 보기

@@ -0,0 +1,28 @@
from focker.jail import backup_file
import tempfile
import os
def test_backup_file():
with tempfile.TemporaryDirectory() as d:
fname = os.path.join(d, 'dummy.conf')
with open(fname, 'w') as f:
f.write('init')
nbackups = 10
for i in range(15):
backup_file(fname, nbackups=nbackups, chmod=0o640)
with open(fname, 'w') as f:
f.write(str(i))
fname = os.path.join(d, 'dummy.conf')
with open(fname, 'r') as f:
assert f.read() == '14'
for i in range(nbackups):
fname = os.path.join(d, 'dummy.conf.%d' % i)
assert os.path.exists(fname)
with open(fname, 'r') as f:
if i < 5:
assert f.read() == str(i + 9)
else:
assert f.read() == str(i - 1)

불러오는 중...
취소
저장