forked from hhvm/hhast
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHHClientDuplicatedLintErrorTest.hack
More file actions
58 lines (53 loc) · 1.94 KB
/
HHClientDuplicatedLintErrorTest.hack
File metadata and controls
58 lines (53 loc) · 1.94 KB
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
/*
* Copyright (c) 2017-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*/
namespace Facebook\HHAST;
use type Facebook\HackTest\DataProvider;
use namespace HH\Lib\{C, Str, Vec};
/**
* The test suite ensures that no lint error is found by `HHClientLinter` in
* the examples for `SingleRuleLinter`s.
*
* If an example triggers hh_client lint errors that indicate problems other
* than the `SingleRuleLinter` supposes to detect, add HHAST_IGNORE_ALL markers
* to suppress them. If an example triggers hh_client lint errors that
* indicate problems that are essentially the same as the `SingleRuleLinter`
* supposes to detect, it means the `SingleRuleLinter` is a duplicate of the
* hh_client lint error, and we should either disable the hh_client lint error
* code or remove the `SingleRuleLinter`.
*/
final class HHClientDuplicatedLintErrorTest extends TestCase {
use HHClientLinterTestTrait;
const HHClientLinter::TConfig CONFIG = shape();
public function getDirtyFixturesFromOtherLinters(): vec<(string)> {
return \glob(__DIR__.'/examples/*/*.in')
|> Vec\filter($$, $path ==> !Str\contains($path, 'HHClientLinter'))
|> Vec\map($$, $path ==> tuple($path));
}
<<DataProvider('getDirtyFixturesFromOtherLinters')>>
public async function testDuplicatedLintError(string $path): Awaitable<void> {
$linter = $this->getLinter($path);
$errors = await $linter->getLintErrorsAsync();
if (C\is_empty($errors)) {
return;
}
Vec\map(
$errors,
$error ==> Str\format(
"- %s: %s at line %s:%d:\n%s",
$error->getLintRule()->getName(),
$error->getDescription(),
$path,
$error->getRange()[0][1] ?? -1,
$error->getPrettyBlame() ?? '',
),
)
|> Str\join($$, "\n")
|> self::fail("Expected no errors, got:\n".$$);
}
}