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 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright 2018 João Pedro Rodrigues
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""
Unit Tests for `pdb_tidy`.
"""
try:
from StringIO import StringIO # python 2.7
except ImportError:
from io import StringIO # python 3.x
import os
import sys
import unittest
from .config import data_dir
from .utils import OutputCapture
class TestTool(unittest.TestCase):
"""
Generic class for testing tools.
"""
def setUp(self):
# Dynamically import the module
name = 'pdbtools.pdb_tidy'
self.module = __import__(name, fromlist=[''])
def exec_module(self, stdin=None):
"""
Execs module.
"""
if stdin is not None:
sys.stdin = StringIO(stdin)
with OutputCapture() as output:
try:
self.module.main()
except SystemExit as e:
self.retcode = e.code
self.stdout = output.stdout
self.stderr = output.stderr
sys.stdin = sys.__stdin__ # restore
return
def test_default(self):
"""$ pdb_tidy data/dummy.pdb"""
fpath = os.path.join(data_dir, 'dummy.pdb')
sys.argv = ['', fpath]
# Execute the script
self.exec_module()
# Validate results
self.assertEqual(self.retcode, 0) # ensure the program exited OK.
# CONECTs are ignored by issue #72, expected only 205 lines
self.assertEqual(len(self.stdout), 205)
self.assertEqual(len(self.stderr), 0) # no errors
# Check if we added TER statements correctly
n_ter = len([r for r in self.stdout if r.startswith('TER')])
self.assertEqual(n_ter, 5)
# Check no CONECT in output
c_conect = sum(1 for i in self.stdout if i.startswith('CONECT'))
self.assertEqual(c_conect, 0)
# Check if we added END statements correctly
self.assertTrue(self.stdout[-1].startswith('END'))
def test_default_in_lib(self):
"""
Test command-line versus lib.
$ pdb_tidy data/dummy.pdb
>>> original_lines = open('dummy.pdb').readlines()
>>> lines = list(pdb_tidy.run(original_lines))
`lines` and the result from the command-line must be the same.
"""
fpath = os.path.join(data_dir, 'dummy.pdb')
sys.argv = ['', fpath]
# Execute the script
self.exec_module()
fin = open(os.path.join(data_dir, 'dummy.pdb'))
original_lines = fin.readlines()
fin.close()
lines = list(self.module.run(original_lines))
self.assertEqual(len(lines), 205)
# Check if we added TER statements correctly
n_ter = len([r for r in lines if r.startswith('TER')])
self.assertEqual(n_ter, 5)
# Check no CONECT in output
c_conect = sum(1 for i in lines if i.startswith('CONECT'))
self.assertEqual(c_conect, 0)
# Check if we added END statements correctly
self.assertTrue(lines[-1].startswith('END'))
self.assertTrue(lines, self.stdout)
def test_tidy_removes_master(self):
"""Test pdb_tidy removes MASTER lines as well."""
sys.argv = ['']
self.exec_module(
'MASTER 378 0 9 5 3 '
'0 29 6 847 1 76 7'
)
# Check no MASTER in output
m_master = sum(1 for i in self.stdout if i.startswith('MASTER'))
self.assertEqual(m_master, 0)
def test_default_stdin(self):
"""$ cat data/dummy.pdb | pdb_tidy"""
fpath = os.path.join(data_dir, 'dummy.pdb')
sys.argv = ['']
# Execute the script with file as stdin
with open(fpath) as fp:
self.exec_module(fp.read())
# Validate results
self.assertEqual(self.retcode, 0) # ensure the program exited OK.
# CONECTs are ignored by issue #72, expected only 205 lines
self.assertEqual(len(self.stdout), 205)
self.assertEqual(len(self.stderr), 0) # no errors
# Check if we added TER statements correctly
n_ter = len([r for r in self.stdout if r.startswith('TER')])
self.assertEqual(n_ter, 5)
# Check no CONECT in output
c_conect = sum(1 for i in self.stdout if i.startswith('CONECT'))
self.assertEqual(c_conect, 0)
# Check if we added END statements correctly
self.assertTrue(self.stdout[-1].startswith('END'))
def test_default_strict(self):
"""$ pdb_tidy -strict data/dummy.pdb"""
fpath = os.path.join(data_dir, 'dummy.pdb')
sys.argv = ['', '-strict', fpath]
# Execute the script
self.exec_module()
# Validate results
self.assertEqual(self.retcode, 0) # ensure the program exited OK.
# CONECTs are ignored by issue #72, expected only 204 lines
self.assertEqual(len(self.stdout), 204)
self.assertEqual(len(self.stderr), 0) # no errors
# Check if we added TER statements correctly
n_ter = len([r for r in self.stdout if r.startswith('TER')])
self.assertEqual(n_ter, 4)
# Check no CONECT in output
c_conect = sum(1 for i in self.stdout if i.startswith('CONECT'))
self.assertEqual(c_conect, 0)
# Check if we added END statements correctly
self.assertTrue(self.stdout[-1].startswith('END'))
def test_default_strict_stdin(self):
"""$ cat data/dummy.pdb | pdb_tidy -strict"""
fpath = os.path.join(data_dir, 'dummy.pdb')
sys.argv = ['', '-strict']
# Execute the script
with open(fpath) as fp:
self.exec_module(fp.read())
# Validate results
self.assertEqual(self.retcode, 0) # ensure the program exited OK.
# CONECTs are ignored by issue #72, expected only 204 lines
self.assertEqual(len(self.stdout), 204)
self.assertEqual(len(self.stderr), 0) # no errors
# Check if we added TER statements correctly
n_ter = len([r for r in self.stdout if r.startswith('TER')])
self.assertEqual(n_ter, 4)
# Check no CONECT in output
c_conect = sum(1 for i in self.stdout if i.startswith('CONECT'))
self.assertEqual(c_conect, 0)
# Check if we added END statements correctly
self.assertTrue(self.stdout[-1].startswith('END'))
def test_corrects_model_format_and_numbers(self):
"""Correct MODEL lines."""
fpath = os.path.join(data_dir, 'ensemble_error_MODEL.pdb')
sys.argv = ['', fpath]
self.exec_module()
self.assertEqual(self.retcode, 0)
self.assertEqual(len(self.stdout), 16)
self.assertEqual(len(self.stderr), 0)
self.assertEqual(len(self.stdout[5].strip()), 14)
self.assertEqual(len(self.stdout[5]), 80)
self.assertEqual(len(self.stdout[10].strip()), 14)
self.assertEqual(len(self.stdout[10]), 80)
self.assertEqual(self.stdout[5].strip(), "MODEL 1")
self.assertEqual(self.stdout[10].strip(), "MODEL 2")
def test_corrects_model_ENDMDL(self):
"""Correct MODEL lines."""
fpath = os.path.join(data_dir, 'ensemble_error_4.pdb')
sys.argv = ['', fpath]
self.exec_module()
self.assertEqual(self.retcode, 0)
self.assertEqual(len(self.stdout), 14)
self.assertEqual(len(self.stderr), 0)
# MODEL lines
self.assertEqual(len(self.stdout[3].strip()), 14)
self.assertEqual(len(self.stdout[3]), 80)
self.assertEqual(len(self.stdout[3].strip()), 14)
self.assertEqual(len(self.stdout[8]), 80)
self.assertEqual(self.stdout[3].strip(), "MODEL 1")
self.assertEqual(self.stdout[8].strip(), "MODEL 2")
# ENDMDL LINES
self.assertEqual(len(self.stdout[7]), 80)
self.assertEqual(len(self.stdout[12]), 80)
self.assertEqual(self.stdout[7].strip(), "ENDMDL")
self.assertEqual(self.stdout[12].strip(), "ENDMDL")
# END LINES
self.assertEqual(self.stdout[-1].strip(), "END")
self.assertEqual(len(self.stdout[-1]), 80)
def test_corrects_model_ENDMDL_with_HETATM(self):
"""Correct MODEL lines."""
fpath = os.path.join(data_dir, 'hetatm_ensemble.pdb')
sys.argv = ['', fpath]
self.exec_module()
self.assertEqual(self.retcode, 0)
self.assertEqual(len(self.stdout), 45)
self.assertEqual(len(self.stderr), 0)
# MODEL lines
self.assertEqual(len(self.stdout[0]), 80)
self.assertEqual(len(self.stdout[0].strip()), 14)
self.assertEqual(len(self.stdout[22]), 80)
self.assertEqual(len(self.stdout[22].strip()), 14)
self.assertEqual(self.stdout[0].strip(), "MODEL 1")
self.assertEqual(self.stdout[22].strip(), "MODEL 2")
# ENDMDL LINES
self.assertEqual(len(self.stdout[21]), 80)
self.assertEqual(len(self.stdout[43]), 80)
self.assertEqual(self.stdout[21].strip(), "ENDMDL")
self.assertEqual(self.stdout[43].strip(), "ENDMDL")
# END LINES
self.assertEqual(self.stdout[-1].strip(), "END")
self.assertEqual(len(self.stdout[-1]), 80)
def test_file_not_found(self):
"""$ pdb_tidy not_existing.pdb"""
# Error (file not found)
afile = os.path.join(data_dir, 'not_existing.pdb')
sys.argv = ['', afile]
# Execute the script
self.exec_module()
self.assertEqual(self.retcode, 1)
self.assertEqual(len(self.stdout), 0)
self.assertEqual(self.stderr[0][:22],
"ERROR!! File not found")
@unittest.skipIf(os.getenv('SKIP_TTY_TESTS'), 'skip on GHA - no TTY')
def test_helptext(self):
"""$ pdb_tidy"""
sys.argv = ['']
# Execute the script
self.exec_module()
self.assertEqual(self.retcode, 1)
self.assertEqual(len(self.stdout), 0)
self.assertEqual(self.stderr, self.module.__doc__.split("\n")[:-1])
def test_invalid_option(self):
"""$ pdb_tidy -A data/dummy.pdb"""
sys.argv = ['', '-A', os.path.join(data_dir, 'dummy.pdb')]
# Execute the script
self.exec_module()
self.assertEqual(self.retcode, 1)
self.assertEqual(len(self.stdout), 0)
self.assertEqual(self.stderr[0][:36],
"ERROR! First argument is not a valid")
if __name__ == '__main__':
from config import test_dir
mpath = os.path.abspath(os.path.join(test_dir, '..'))
sys.path.insert(0, mpath) # so we load dev files before any installation
unittest.main()
|