Skip to content

Commit

Permalink
Auto add snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerJang27 authored and github-actions[bot] committed Aug 29, 2024
1 parent 1d8745c commit c8aeed7
Show file tree
Hide file tree
Showing 5 changed files with 444 additions and 0 deletions.
135 changes: 135 additions & 0 deletions linters/buildifier/test_data/buildifier_v7.3.1_basic_check.check.shot
Original file line number Diff line number Diff line change
@@ -0,0 +1,135 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
// trunk-upgrade-validation:RELEASE

exports[`Testing linter buildifier test basic_check 1`] = `
{
"issues": [
{
"code": "module-docstring",
"column": "1",
"file": "test_data/basic.bzl",
"issueClass": "ISSUE_CLASS_EXISTING",
"issueUrl": "https://github.com/bazelbuild/buildtools/blob/main/WARNINGS.md#module-docstring",
"level": "LEVEL_HIGH",
"line": "1",
"linter": "buildifier",
"message": "The file has no module docstring.
A module docstring is a string literal (not a comment) which should be the first statement of a file (it may follow comment lines).",
"targetType": "starlark",
},
{
"code": "load",
"column": "26",
"file": "test_data/basic.bzl",
"issueClass": "ISSUE_CLASS_EXISTING",
"issueUrl": "https://github.com/bazelbuild/buildtools/blob/main/WARNINGS.md#load",
"level": "LEVEL_HIGH",
"line": "1",
"linter": "buildifier",
"message": "Loaded symbol "a" is unused. Please remove it.
To disable the warning, add '@unused' in a comment.
If you want to re-export a symbol, use the following pattern:

load(..., _a = "a", ...)
a = _a",
"targetType": "starlark",
},
{
"code": "load",
"column": "26",
"file": "test_data/basic.bzl",
"issueClass": "ISSUE_CLASS_EXISTING",
"issueUrl": "https://github.com/bazelbuild/buildtools/blob/main/WARNINGS.md#load",
"level": "LEVEL_HIGH",
"line": "2",
"linter": "buildifier",
"message": "Loaded symbol "b" is unused. Please remove it.
To disable the warning, add '@unused' in a comment.
If you want to re-export a symbol, use the following pattern:

load(..., _b = "b", ...)
b = _b",
"targetType": "starlark",
},
],
"lintActions": [
{
"command": "fix",
"fileGroupName": "bazel-build",
"linter": "buildifier",
"paths": [
"test_data/add_tables.BUILD",
],
"verb": "TRUNK_VERB_FMT",
},
{
"command": "fix",
"fileGroupName": "starlark",
"linter": "buildifier",
"paths": [
"test_data/basic.bzl",
],
"verb": "TRUNK_VERB_FMT",
},
{
"command": "warn",
"fileGroupName": "bazel-build",
"linter": "buildifier",
"paths": [
"test_data/add_tables.BUILD",
],
"verb": "TRUNK_VERB_CHECK",
},
{
"command": "warn",
"fileGroupName": "starlark",
"linter": "buildifier",
"paths": [
"test_data/basic.bzl",
],
"verb": "TRUNK_VERB_CHECK",
},
{
"command": "warn",
"fileGroupName": "bazel-build",
"linter": "buildifier",
"paths": [
"test_data/add_tables.BUILD",
],
"upstream": true,
"verb": "TRUNK_VERB_CHECK",
},
{
"command": "warn",
"fileGroupName": "starlark",
"linter": "buildifier",
"paths": [
"test_data/basic.bzl",
],
"upstream": true,
"verb": "TRUNK_VERB_CHECK",
},
],
"taskFailures": [],
"unformattedFiles": [
{
"column": "1",
"file": "test_data/add_tables.BUILD",
"issueClass": "ISSUE_CLASS_UNFORMATTED",
"level": "LEVEL_HIGH",
"line": "1",
"linter": "buildifier",
"message": "Incorrect formatting, autoformat by running 'trunk fmt'",
},
{
"column": "1",
"file": "test_data/basic.bzl",
"issueClass": "ISSUE_CLASS_UNFORMATTED",
"level": "LEVEL_HIGH",
"line": "1",
"linter": "buildifier",
"message": "Incorrect formatting, autoformat by running 'trunk fmt'",
},
],
}
`;
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
// trunk-upgrade-validation:RELEASE

exports[`Testing formatter buildifier test no_config 1`] = `
"foo_macro(
fizz = [
":lib2",
":lib1",
],
)

filegroup(
name = "files",
srcs = glob(["**"]),
)

sh_library(
name = "lib1",
srcs = ["src1.sh"],
)

sh_library(
name = "lib2",
srcs = ["src1.sh"],
)

sh_binary(
name = "foo",
srcs = ["foo.sh"],
deps = [
":lib1",
":lib2",
],
)
"
`;
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
// trunk-upgrade-validation:RELEASE

exports[`Testing formatter buildifier test no_config 1`] = `
"# Misformatted file
def eponymous_name():
name = native.package_name()

return name[name.rfind("/") + 1:]
"
`;
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
// trunk-upgrade-validation:RELEASE

exports[`Testing formatter buildifier test with_config 1`] = `
"foo_macro(
fizz = [
":lib1",
":lib2",
],
)

filegroup(
name = "files",
srcs = glob(["**"]),
)

sh_library(
name = "lib1",
srcs = ["src1.sh"],
)

sh_library(
name = "lib2",
srcs = ["src1.sh"],
)

sh_binary(
name = "foo",
srcs = ["foo.sh"],
deps = [
":lib1",
":lib2",
],
)
"
`;
Loading

0 comments on commit c8aeed7

Please sign in to comment.