blob: f4ad001a082506800d5bedbf4d010f1c9af4b192 (
plain)
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
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
// ------------------------------------------------------------------------------
// Requirements
// ------------------------------------------------------------------------------
var rule = require("../lib/rules/use-default-preference-values");
var RuleTester = require("eslint").RuleTester;
const ruleTester = new RuleTester({ parserOptions: { ecmaVersion: 6 } });
// ------------------------------------------------------------------------------
// Tests
// ------------------------------------------------------------------------------
function invalidCode(code) {
let message = "provide a default value instead of using a try/catch block";
return { code, errors: [{ message, type: "TryStatement" }] };
}
let types = ["Bool", "Char", "Float", "Int"];
let methods = types.map(type => "get" + type + "Pref");
ruleTester.run("use-default-preference-values", rule, {
valid: [].concat(
methods.map(m => "blah = branch." + m + "('blah', true);"),
methods.map(m => "blah = branch." + m + "('blah');"),
methods.map(
m => "try { canThrow(); blah = branch." + m + "('blah'); } catch(e) {}"
)
),
invalid: [].concat(
methods.map(m =>
invalidCode("try { blah = branch." + m + "('blah'); } catch(e) {}")
)
),
});
|