Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1235)

Unified Diff: third_party/closure_linter/closure_linter/error_fixer_test.py

Issue 2592193002: Remove closure_linter from Chrome (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/closure_linter/closure_linter/error_fixer_test.py
diff --git a/third_party/closure_linter/closure_linter/error_fixer_test.py b/third_party/closure_linter/closure_linter/error_fixer_test.py
deleted file mode 100644
index 0deeb3bc2506444e866830ad6469bdb8810d8ebc..0000000000000000000000000000000000000000
--- a/third_party/closure_linter/closure_linter/error_fixer_test.py
+++ /dev/null
@@ -1,77 +0,0 @@
-#!/usr/bin/env python
-#
-# Copyright 2012 The Closure Linter Authors. All Rights Reserved.
-# 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 the error_fixer module."""
-
-# Allow non-Google copyright
-# pylint: disable=g-bad-file-header
-
-
-
-import unittest as googletest
-from closure_linter import error_fixer
-from closure_linter import testutil
-from closure_linter import tokenutil
-
-
-class ErrorFixerTest(googletest.TestCase):
- """Unit tests for error_fixer."""
-
- def setUp(self):
- self.error_fixer = error_fixer.ErrorFixer()
-
- def testDeleteToken(self):
- start_token = testutil.TokenizeSourceAndRunEcmaPass(_TEST_SCRIPT)
- second_token = start_token.next
- self.error_fixer.HandleFile('test_file', start_token)
-
- self.error_fixer._DeleteToken(start_token)
-
- self.assertEqual(second_token, self.error_fixer._file_token)
-
- def testDeleteTokens(self):
- start_token = testutil.TokenizeSourceAndRunEcmaPass(_TEST_SCRIPT)
- fourth_token = start_token.next.next.next
- self.error_fixer.HandleFile('test_file', start_token)
-
- self.error_fixer._DeleteTokens(start_token, 3)
-
- self.assertEqual(fourth_token, self.error_fixer._file_token)
-
- def DoTestFixJsDocPipeNull(self, expected, original):
- _, comments = testutil.ParseFunctionsAndComments(
- '/** @param {%s} */' % original)
- jstype = comments[0].GetDocFlags()[0].jstype
- self.error_fixer.HandleFile('unittest', None)
- self.error_fixer._FixJsDocPipeNull(jstype)
- self.assertEquals(expected, repr(jstype))
- result = tokenutil.TokensToString(jstype.FirstToken()).strip('} */')
- self.assertEquals(expected, result)
-
- def testFixJsDocPipeNull(self):
- self.DoTestFixJsDocPipeNull('?Object', 'Object|null')
- self.DoTestFixJsDocPipeNull('function(?Object)', 'function(Object|null)')
- self.DoTestFixJsDocPipeNull('function(?Object=)',
- 'function(Object|null=)')
- self.DoTestFixJsDocPipeNull(
- 'function(?(Object)=,null=,?(Object)=):string',
- 'function((Object|null)=,null=,(Object|null)=):string')
-
-_TEST_SCRIPT = """\
-var x = 3;
-"""
-
-if __name__ == '__main__':
- googletest.main()
« no previous file with comments | « third_party/closure_linter/closure_linter/error_fixer.py ('k') | third_party/closure_linter/closure_linter/errorrecord.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698