Skip to content

Commit

Permalink
Merge pull request #2838 from onflow/sainati/entitlement-checking-error
Browse files Browse the repository at this point in the history
Skip adding malformed entitlement relations to maps
  • Loading branch information
dsainati1 authored Oct 4, 2023
2 parents 445adf4 + 16885b6 commit d45a8ec
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 0 deletions.
2 changes: 2 additions & 0 deletions runtime/sema/check_interface_declaration.go
Original file line number Diff line number Diff line change
Expand Up @@ -529,6 +529,7 @@ func (checker *Checker) declareEntitlementMappingType(declaration *ast.Entitleme
checker.report(&InvalidNonEntitlementTypeInMapError{
Pos: association.Input.Identifier.Pos,
})
continue
}

output := checker.convertNominalType(association.Output)
Expand All @@ -538,6 +539,7 @@ func (checker *Checker) declareEntitlementMappingType(declaration *ast.Entitleme
checker.report(&InvalidNonEntitlementTypeInMapError{
Pos: association.Output.Identifier.Pos,
})
continue
}

entitlementRelations = append(
Expand Down
57 changes: 57 additions & 0 deletions runtime/tests/checker/entitlements_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7224,6 +7224,9 @@ func TestCheckEntitlementErrorReporting(t *testing.T) {
}

func TestCheckEntitlementOptionalChaining(t *testing.T) {

t.Parallel()

t.Run("optional chain function call", func(t *testing.T) {
t.Parallel()
_, err := ParseAndCheck(t, `
Expand Down Expand Up @@ -7312,3 +7315,57 @@ func TestCheckEntitlementOptionalChaining(t *testing.T) {
require.NoError(t, err)
})
}

func TestCheckEntitlementMissingInMap(t *testing.T) {

t.Parallel()

t.Run("missing type", func(t *testing.T) {

t.Parallel()

_, err := ParseAndCheck(t, `
access(all) entitlement X
access(all) entitlement mapping M {
X -> X
NonExistingEntitlement -> X
}
access(all) struct S {
access(M) var foo: auth(M) &Int
init() {
self.foo = &3 as auth(X) &Int
var selfRef = &self as auth(X) &S
selfRef.foo
}
}
`)

errors := RequireCheckerErrors(t, err, 2)
require.IsType(t, &sema.NotDeclaredError{}, errors[0])
require.IsType(t, &sema.InvalidNonEntitlementTypeInMapError{}, errors[1])
})

t.Run("non entitlement type", func(t *testing.T) {

t.Parallel()

_, err := ParseAndCheck(t, `
access(all) entitlement X
access(all) entitlement mapping M {
X -> X
Int -> X
}
access(all) struct S {
access(M) var foo: auth(M) &Int
init() {
self.foo = &3 as auth(X) &Int
var selfRef = &self as auth(X) &S
selfRef.foo
}
}
`)

errors := RequireCheckerErrors(t, err, 1)
require.IsType(t, &sema.InvalidNonEntitlementTypeInMapError{}, errors[0])
})
}

0 comments on commit d45a8ec

Please sign in to comment.