forked from hhvm/hhast
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLinterConfigTest.hack
More file actions
149 lines (127 loc) · 4.3 KB
/
LinterConfigTest.hack
File metadata and controls
149 lines (127 loc) · 4.3 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
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
/*
* 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\Tests;
use function Facebook\FBExpect\expect;
use type Facebook\HHAST\{
LinterCLITestTrait,
PreferRequireOnceLinter,
SingleRuleLintError,
SingleRuleLinter,
TestCase,
};
use type Facebook\HHAST\__Private\LintRunConfig;
abstract class EmptyBaseLinter extends SingleRuleLinter {
<<__Override>>
final public async function getLintErrorsAsync(
): Awaitable<vec<SingleRuleLintError>> {
return vec[];
}
final public function getConfigPublic(): ?this::TConfig {
return $this->getConfig();
}
}
final class ValidConfigForLinter extends EmptyBaseLinter {
const type TConfig = shape(
'the answer' => int,
'a structure' => shape('with keys' => vec<vec<string>>),
);
}
final class InvalidConfigForLinter extends EmptyBaseLinter {
const type TConfig = shape(
'i should have only one key' => null,
);
}
final class ConfigNotSuppliedLinter extends EmptyBaseLinter {
const type TConfig = shape(
'configs are optional' => null,
);
}
final class ConfigTypeIsNotSupportedByTypeAssertLinter extends EmptyBaseLinter {
// TypeAssert doesn't support vec<nothing>
// If it does in the future, please update this test to a different
// type that TypeAssert does not support.
const type TConfig = shape('impossible' => vec<nothing>);
}
final class LinterConfigTest extends TestCase {
use LinterCLITestTrait;
const string TEST_DIRECTORY = __DIR__.'/../test-data';
private static function getLintRunConfig(): LintRunConfig {
return LintRunConfig::getForPath(self::TEST_DIRECTORY);
}
public function testValidConfigForLinter(): void {
$lrc = static::getLintRunConfig();
$config = $lrc->getLinterConfigForLinter<ValidConfigForLinter, _>(
ValidConfigForLinter::class,
);
expect($config)->toNotBeNull('Config could not be fetched');
expect($config)->toEqual(shape(
'the answer' => 42,
'a structure' => shape(
'with keys' => vec[
vec[
'and lists of lists',
],
],
),
));
}
public function testInvalidConfigForLinter(): void {
$lrc = static::getLintRunConfig();
expect(
() ==> $lrc->getLinterConfigForLinter<InvalidConfigForLinter, _>(
InvalidConfigForLinter::class,
),
)->toThrow(\Exception::class, 'is not of the correct type');
}
public async function testInvalidConfigForCLI(): Awaitable<void> {
list($cli, $_, $stdout, $stderr) =
$this->getCLI('--config-file', self::TEST_DIRECTORY.'/hhast-lint.json', self::TEST_DIRECTORY);
$exit_code = await $cli->mainAsync();
expect($stderr->getBuffer())->toContainSubstring(
'A linter threw an exception:',
);
expect($stderr->getBuffer())->toContainSubstring(
'Linter: Facebook\HHAST\Tests\InvalidConfigForLinter',
);
expect($stderr->getBuffer())->toMatchRegExp(
re'#File\\: .*/test-data/unparsable_php_file\\.php#',
);
expect($stderr->getBuffer())->toContainSubstring(
'Message: Configuration for Facebook\HHAST\Tests\InvalidConfigForLinter is not of the correct type. See previous exception:',
);
expect($exit_code)->toBeSame(2);
expect($stdout->getBuffer())->toBeEmpty();
}
public function testLinterWithoutATConfigAndNoConfigSupplied(): void {
$lrc = static::getLintRunConfig();
$config = $lrc->getLinterConfigForLinter<PreferRequireOnceLinter, _>(
PreferRequireOnceLinter::class,
);
expect($config)->toBeNull('No config supplied');
}
public function testConfigNotSuppliedLinter(): void {
$lrc = static::getLintRunConfig();
$config = $lrc->getLinterConfigForLinter<ConfigNotSuppliedLinter, _>(
ConfigNotSuppliedLinter::class,
);
expect($config)->toBeNull('No config supplied');
}
public function testConfigTypeIsNotSupportedByTypeAssertLinter(): void {
$lrc = static::getLintRunConfig();
expect(
() ==> $lrc->getLinterConfigForLinter<
ConfigTypeIsNotSupportedByTypeAssertLinter,
_,
>(ConfigTypeIsNotSupportedByTypeAssertLinter::class),
)->toThrow(
\InvalidOperationException::class,
'specified an unsupported config type',
);
}
}