-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The change in 0d2eda1 did not fix the panic condition, which occurs if the underlying *StringExpr is nil. Check for nil using reflection, and add a test to verify the fix.
- Loading branch information
1 parent
0d2eda1
commit ae63718
Showing
2 changed files
with
47 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
// Copyright 2024, Pulumi Corporation. | ||
// | ||
// 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. | ||
|
||
package ast | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/pulumi/esc/syntax" | ||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestExprError(t *testing.T) { | ||
type args struct { | ||
expr Expr | ||
summary string | ||
} | ||
var ss *StringExpr | ||
tests := []struct { | ||
name string | ||
args args | ||
want *syntax.Diagnostic | ||
}{ | ||
{"nil *StringExpr", | ||
args{ | ||
ss, "", | ||
}, syntax.Error(nil, "", "")}, | ||
} | ||
for _, tt := range tests { | ||
t.Run(tt.name, func(t *testing.T) { | ||
assert.Equalf(t, tt.want, ExprError(tt.args.expr, tt.args.summary), "ExprError(%v, %v)", tt.args.expr, tt.args.summary) | ||
}) | ||
} | ||
} |