Пример #1
0
 def testExpectedWarnings(self):
     msg = ''
     # compare test files (.input and .expected for each)
     # TODO: Add these files for amendments!
     # N.B. in some cases, python 2 and python 3 will have different output!
     for fn in pathmap.all_files(os.path.join('amendments', 'warn_err')):
         if fn.endswith('.input'):
             frag = fn[:-len('.input')]
             efn = frag + '.expected'
             # check for a python version-specific file, like 'foo.expected-py3'
             current_python_version = (sys.version_info > (3, 0)) and 'py3' or 'py2'
             versioned_efn = '{f}-{v}'.format(f=efn, v=current_python_version)
             if os.path.exists(versioned_efn):
                 efn = versioned_efn
             if os.path.exists(efn):
                 inp = testing_read_json(fn)
                 aa = validate_amendment(inp)
                 errors = aa[0]
                 exp = testing_read_json(efn)
                 if errors != exp:
                     ofn = frag + '.output'
                     testing_write_json(errors, ofn)
                     msg = "Validation failed to produce expected outcome. Compare {o} and {e}".format(o=ofn, e=efn)
                 self.assertEqual(exp, errors, msg)
             else:
                 _LOG.warn('Expected output file "{f}" not found'.format(f=efn))
Пример #2
0
 def testInvalidFilesFail(self):
     # just one test file for now
     msg = ''
     frag = 'amendment-incomplete.json'
     inp = pathmap.amendment_obj(frag)
     aa = validate_amendment(inp)
     if len(aa) > 0:
         errors = aa[0]
         if len(errors) == 0:
             ofn = pathmap.amendment_source_path(frag + '.output')
             testing_write_json(errors, ofn)
             msg = "Failed to reject invalid file (no errors found)"
             self.assertTrue(False, msg)
Пример #3
0
 def _is_valid_amendment_json(self, json_repr):
     """Call the primary validator for a quick test"""
     amendment = self._coerce_json_to_amendment(json_repr)
     if amendment is None:
         # invalid JSON, definitely broken
         return False
     aa = validate_amendment(amendment)
     errors = aa[0]
     for e in errors:
         _LOG.debug("> invalid JSON: {m}".format(m=e.encode("utf-8")))
     if len(errors) > 0:
         return False
     return True
Пример #4
0
 def _is_valid_amendment_json(self, json_repr):
     """Call the primary validator for a quick test"""
     amendment = self._coerce_json_to_amendment(json_repr)
     if amendment is None:
         # invalid JSON, definitely broken
         return False
     aa = validate_amendment(amendment)
     errors = aa[0]
     for e in errors:
         _LOG.debug('> invalid JSON: {m}'.format(m=e.encode('utf-8')))
     if len(errors) > 0:
         return False
     return True
Пример #5
0
 def testValidFilesPass(self):
     # just one test file for now
     msg = ''
     frag = 'amendment-good.json'
     amendment = pathmap.amendment_obj(frag)
     aa = validate_amendment(amendment)
     errors = aa[0]
     for e in errors:
         _LOG.debug('unexpected error from {f}: {m}'.format(f=frag, m=UNICODE(e)))
     if len(errors) > 0:
         ofn = pathmap.amendment_source_path(frag + '.output')
         testing_write_json(errors, ofn)
         msg = "File failed to validate cleanly. See {o}".format(o=ofn)
     self.assertEqual(len(errors), 0, msg)
Пример #6
0
 def testInvalidDOIsFail(self):
     # all DOIs should be in URL form
     msg = ''
     frag = 'amendment-bad-dois.json'
     inp = pathmap.amendment_obj(frag)
     aa = validate_amendment(inp)
     if len(aa) > 0:
         errors = aa[0]
         ofn = pathmap.amendment_source_path(frag + '.output')
         testing_write_json(errors, ofn)
         if len(errors) == 0:
             msg = "Failed to reject bare DOI (no errors found)"
             self.assertTrue(False, msg)
         else:
             self.assertTrue('should be a URL' in errors[0])
Пример #7
0
 def testCreated(self):
     a = get_empty_amendment()
     aa = validate_amendment(a)
     errors = aa[0]
     self.assertTrue(len(errors) == 0)