예제 #1
0
 def test_commandCommonArgs(self, cmd_mock):
     cmd_mock.return_value = (None, None)
     args = createSkiaGoldArgs(git_revision='a', local_pixel_tests=False)
     sgp = gpu_skia_gold_properties.GpuSkiaGoldProperties(args)
     session = gpu_skia_gold_session.GpuSkiaGoldSession(self._working_dir,
                                                        sgp,
                                                        self._json_keys,
                                                        'corpus',
                                                        instance='instance')
     session.Diff('name', 'png_file', None)
     call_args = cmd_mock.call_args[0][0]
     self.assertIn('diff', call_args)
     assertArgWith(self, call_args, '--corpus', 'corpus')
     # TODO(skbug.com/10610): Remove the -public once we go back to using the
     # non-public instance, or add a second test for testing that the correct
     # instance is chosen if we decide to support both depending on what the
     # user is authenticated for.
     assertArgWith(self, call_args, '--instance', 'instance-public')
     assertArgWith(self, call_args, '--input', 'png_file')
     assertArgWith(self, call_args, '--test', 'name')
     # TODO(skbug.com/10611): Re-add this assert and remove the check for the
     # absence of the directory once we switch back to using the proper working
     # directory.
     # assertArgWith(self, call_args, '--work-dir', self._working_dir)
     self.assertNotIn(self._working_dir, call_args)
     i = call_args.index('--out-dir')
     # The output directory should not be a subdirectory of the working
     # directory.
     self.assertNotIn(self._working_dir, call_args[i + 1])
 def test_commandCommonArgs(self, cmd_mock):
     cmd_mock.return_value = (None, None)
     args = createSkiaGoldArgs(git_revision='a', local_pixel_tests=False)
     sgp = gpu_skia_gold_properties.GpuSkiaGoldProperties(args)
     session = gpu_skia_gold_session.GpuSkiaGoldSession(self._working_dir,
                                                        sgp,
                                                        None,
                                                        'corpus',
                                                        instance='instance')
     session.Diff('name', 'png_file', None)
     call_args = cmd_mock.call_args[0][0]
     self.assertIn('diff', call_args)
     assertArgWith(self, call_args, '--corpus', 'corpus')
     assertArgWith(self, call_args, '--instance', 'instance')
     assertArgWith(self, call_args, '--input', 'png_file')
     assertArgWith(self, call_args, '--test', 'name')
     assertArgWith(self, call_args, '--work-dir', self._working_dir)
     i = call_args.index('--out-dir')
     # The output directory should not be a subdirectory of the working
     # directory.
     self.assertNotIn(self._working_dir, call_args[i + 1])
예제 #3
0
    def test_outputManagerNotNeeded(self):
        args = createSkiaGoldArgs(git_revision='a', local_pixel_tests=True)
        sgp = gpu_skia_gold_properties.GpuSkiaGoldProperties(args)
        session = gpu_skia_gold_session.GpuSkiaGoldSession(
            self._working_dir, sgp, self._json_keys, None, None)
        input_filepath = os.path.join(self._working_dir, 'input-inputhash.png')
        with open(input_filepath, 'w') as f:
            f.write('')
        closest_filepath = os.path.join(self._working_dir,
                                        'closest-closesthash.png')
        with open(closest_filepath, 'w') as f:
            f.write('')
        diff_filepath = os.path.join(self._working_dir, 'diff.png')
        with open(diff_filepath, 'w') as f:
            f.write('')

        session._StoreDiffLinks('foo', None, self._working_dir)
        self.assertEqual(session.GetGivenImageLink('foo'),
                         'file://' + input_filepath)
        self.assertEqual(session.GetClosestImageLink('foo'),
                         'file://' + closest_filepath)
        self.assertEqual(session.GetDiffImageLink('foo'),
                         'file://' + diff_filepath)
 def GetSkiaGoldProperties(cls):
     if not cls._skia_gold_properties:
         cls._skia_gold_properties =\
             gpu_skia_gold_properties.GpuSkiaGoldProperties(
                 cls.GetParsedCommandLineOptions())
     return cls._skia_gold_properties