Files
probo/e2e/console/third_party_contact_test.go
Sacha Al Himdani 4c57d201a4 Make license declarations consistently MIT
The source headers, LICENSE files, and license metadata had drifted
apart. Align the entire project to MIT:

- Convert every source-file header to the MIT text across all comment
  styles (Go, TS, TSX, JS, MJS, SQL, CSS, GraphQL, shell), including
  SPDX-License-Identifier tags
- Set the root and cookie-banner LICENSE files to the MIT text with a
  "MIT License" title line
- Switch the package.json license fields, Docker image label, and
  cookie-banner README to MIT
- Update docs and the genmodels header generator accordingly
- Normalize copyright lines to a single format
  (Copyright (c) <year(s)> Probo Inc <hello@probo.com>.): unify the
  hello@getprobo.com and hello@probo.inc emails to hello@probo.com and
  the comma-separated years to a hyphenated range

Genuine third-party references are intentionally left untouched: the
Lucide icon attributions (Lucide is ISC) and the trivy dependency
license allowlist.

Signed-off-by: Sacha Al Himdani <sacha@probo.com>
2026-07-13 16:21:14 +02:00

384 lines
10 KiB
Go

// Copyright (c) 2025-2026 Probo Inc <hello@probo.com>.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
package console_test
import (
"fmt"
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"go.probo.inc/probo/e2e/internal/factory"
"go.probo.inc/probo/e2e/internal/testutil"
)
func TestThirdPartyContact_Create(t *testing.T) {
t.Parallel()
owner := testutil.NewClient(t, testutil.RoleOwner)
// Create a thirdParty first
thirdPartyID := factory.NewThirdParty(owner).WithName("Contact Test ThirdParty").Create()
query := `
mutation CreateThirdPartyContact($input: CreateThirdPartyContactInput!) {
createThirdPartyContact(input: $input) {
thirdPartyContactEdge {
node {
id
fullName
email
phone
role
}
}
}
}
`
var result struct {
CreateThirdPartyContact struct {
ThirdPartyContactEdge struct {
Node struct {
ID string `json:"id"`
FullName string `json:"fullName"`
Email string `json:"email"`
Phone string `json:"phone"`
Role string `json:"role"`
} `json:"node"`
} `json:"thirdPartyContactEdge"`
} `json:"createThirdPartyContact"`
}
err := owner.Execute(query, map[string]any{
"input": map[string]any{
"thirdPartyId": thirdPartyID,
"fullName": "John Doe",
"email": fmt.Sprintf("john.doe.%d@thirdParty.com", time.Now().UnixNano()),
"phone": "+1-555-123-4567",
"role": "Account Manager",
},
}, &result)
require.NoError(t, err)
contact := result.CreateThirdPartyContact.ThirdPartyContactEdge.Node
assert.NotEmpty(t, contact.ID)
assert.Equal(t, "John Doe", contact.FullName)
assert.Equal(t, "+1-555-123-4567", contact.Phone)
assert.Equal(t, "Account Manager", contact.Role)
}
func TestThirdPartyContact_Update(t *testing.T) {
t.Parallel()
owner := testutil.NewClient(t, testutil.RoleOwner)
// Create a thirdParty and contact
thirdPartyID := factory.NewThirdParty(owner).WithName("Update Contact ThirdParty").Create()
createQuery := `
mutation CreateThirdPartyContact($input: CreateThirdPartyContactInput!) {
createThirdPartyContact(input: $input) {
thirdPartyContactEdge {
node {
id
}
}
}
}
`
var createResult struct {
CreateThirdPartyContact struct {
ThirdPartyContactEdge struct {
Node struct {
ID string `json:"id"`
} `json:"node"`
} `json:"thirdPartyContactEdge"`
} `json:"createThirdPartyContact"`
}
err := owner.Execute(createQuery, map[string]any{
"input": map[string]any{
"thirdPartyId": thirdPartyID,
"fullName": "Initial Name",
"email": fmt.Sprintf("initial.%d@thirdParty.com", time.Now().UnixNano()),
},
}, &createResult)
require.NoError(t, err)
contactID := createResult.CreateThirdPartyContact.ThirdPartyContactEdge.Node.ID
query := `
mutation UpdateThirdPartyContact($input: UpdateThirdPartyContactInput!) {
updateThirdPartyContact(input: $input) {
thirdPartyContact {
id
fullName
phone
role
}
}
}
`
var result struct {
UpdateThirdPartyContact struct {
ThirdPartyContact struct {
ID string `json:"id"`
FullName string `json:"fullName"`
Phone string `json:"phone"`
Role string `json:"role"`
} `json:"thirdPartyContact"`
} `json:"updateThirdPartyContact"`
}
err = owner.Execute(query, map[string]any{
"input": map[string]any{
"id": contactID,
"fullName": "Updated Name",
"phone": "+1-555-999-8888",
"role": "Senior Account Manager",
},
}, &result)
require.NoError(t, err)
assert.Equal(t, contactID, result.UpdateThirdPartyContact.ThirdPartyContact.ID)
assert.Equal(t, "Updated Name", result.UpdateThirdPartyContact.ThirdPartyContact.FullName)
assert.Equal(t, "+1-555-999-8888", result.UpdateThirdPartyContact.ThirdPartyContact.Phone)
assert.Equal(t, "Senior Account Manager", result.UpdateThirdPartyContact.ThirdPartyContact.Role)
}
func TestThirdPartyContact_Delete(t *testing.T) {
t.Parallel()
owner := testutil.NewClient(t, testutil.RoleOwner)
thirdPartyID := factory.NewThirdParty(owner).WithName("Delete Contact ThirdParty").Create()
// Create a contact to delete
createQuery := `
mutation CreateThirdPartyContact($input: CreateThirdPartyContactInput!) {
createThirdPartyContact(input: $input) {
thirdPartyContactEdge {
node {
id
}
}
}
}
`
var createResult struct {
CreateThirdPartyContact struct {
ThirdPartyContactEdge struct {
Node struct {
ID string `json:"id"`
} `json:"node"`
} `json:"thirdPartyContactEdge"`
} `json:"createThirdPartyContact"`
}
err := owner.Execute(createQuery, map[string]any{
"input": map[string]any{
"thirdPartyId": thirdPartyID,
"fullName": fmt.Sprintf("Contact to Delete %d", time.Now().UnixNano()),
"email": fmt.Sprintf("delete.%d@thirdParty.com", time.Now().UnixNano()),
},
}, &createResult)
require.NoError(t, err)
contactID := createResult.CreateThirdPartyContact.ThirdPartyContactEdge.Node.ID
deleteQuery := `
mutation DeleteThirdPartyContact($input: DeleteThirdPartyContactInput!) {
deleteThirdPartyContact(input: $input) {
deletedThirdPartyContactId
}
}
`
var result struct {
DeleteThirdPartyContact struct {
DeletedThirdPartyContactID string `json:"deletedThirdPartyContactId"`
} `json:"deleteThirdPartyContact"`
}
err = owner.Execute(deleteQuery, map[string]any{
"input": map[string]any{
"thirdPartyContactId": contactID,
},
}, &result)
require.NoError(t, err)
assert.Equal(t, contactID, result.DeleteThirdPartyContact.DeletedThirdPartyContactID)
}
func TestThirdPartyContact_List(t *testing.T) {
t.Parallel()
owner := testutil.NewClient(t, testutil.RoleOwner)
thirdPartyID := factory.NewThirdParty(owner).WithName("List Contacts ThirdParty").Create()
// Create multiple contacts
for i := range 3 {
query := `
mutation CreateThirdPartyContact($input: CreateThirdPartyContactInput!) {
createThirdPartyContact(input: $input) {
thirdPartyContactEdge {
node {
id
}
}
}
}
`
_, err := owner.Do(query, map[string]any{
"input": map[string]any{
"thirdPartyId": thirdPartyID,
"fullName": fmt.Sprintf("Contact %d", i),
"email": fmt.Sprintf("contact.%d.%d@thirdParty.com", i, time.Now().UnixNano()),
},
})
require.NoError(t, err)
}
query := `
query GetThirdPartyContacts($id: ID!) {
node(id: $id) {
... on ThirdParty {
contacts(first: 10) {
edges {
node {
id
fullName
email
}
}
}
}
}
}
`
var result struct {
Node struct {
Contacts struct {
Edges []struct {
Node struct {
ID string `json:"id"`
FullName string `json:"fullName"`
Email string `json:"email"`
} `json:"node"`
} `json:"edges"`
} `json:"contacts"`
} `json:"node"`
}
err := owner.Execute(query, map[string]any{
"id": thirdPartyID,
}, &result)
require.NoError(t, err)
assert.GreaterOrEqual(t, len(result.Node.Contacts.Edges), 3)
}
func TestThirdPartyContact_TenantIsolation(t *testing.T) {
t.Parallel()
org1Owner := testutil.NewClient(t, testutil.RoleOwner)
org2Owner := testutil.NewClient(t, testutil.RoleOwner)
org1ThirdPartyID := factory.NewThirdParty(org1Owner).WithName("Org1 ThirdParty for Contact").Create()
var createResult struct {
CreateThirdPartyContact struct {
ThirdPartyContactEdge struct {
Node struct {
ID string `json:"id"`
} `json:"node"`
} `json:"thirdPartyContactEdge"`
} `json:"createThirdPartyContact"`
}
err := org1Owner.Execute(`
mutation($input: CreateThirdPartyContactInput!) {
createThirdPartyContact(input: $input) {
thirdPartyContactEdge { node { id } }
}
}
`, map[string]any{
"input": map[string]any{
"thirdPartyId": org1ThirdPartyID,
"fullName": "Org1 Contact",
"email": fmt.Sprintf("org1.contact.%d@thirdParty.com", time.Now().UnixNano()),
},
}, &createResult)
require.NoError(t, err)
contactID := createResult.CreateThirdPartyContact.ThirdPartyContactEdge.Node.ID
t.Run("cannot update thirdPartyContact from another organization", func(t *testing.T) {
_, err := org2Owner.Do(`
mutation($input: UpdateThirdPartyContactInput!) {
updateThirdPartyContact(input: $input) {
thirdPartyContact { id }
}
}
`, map[string]any{
"input": map[string]any{
"id": contactID,
"fullName": "Hijacked Contact",
},
})
require.Error(t, err, "Should not be able to update thirdPartyContact from another org")
})
t.Run("cannot delete thirdPartyContact from another organization", func(t *testing.T) {
_, err := org2Owner.Do(`
mutation($input: DeleteThirdPartyContactInput!) {
deleteThirdPartyContact(input: $input) {
deletedThirdPartyContactId
}
}
`, map[string]any{
"input": map[string]any{
"thirdPartyContactId": contactID,
},
})
require.Error(t, err, "Should not be able to delete thirdPartyContact from another org")
})
t.Run("cannot create thirdPartyContact on a thirdParty from another organization", func(t *testing.T) {
_, err := org2Owner.Do(`
mutation($input: CreateThirdPartyContactInput!) {
createThirdPartyContact(input: $input) {
thirdPartyContactEdge { node { id } }
}
}
`, map[string]any{
"input": map[string]any{
"thirdPartyId": org1ThirdPartyID,
"fullName": "Attacker Contact",
"email": fmt.Sprintf("attacker.%d@thirdParty.com", time.Now().UnixNano()),
},
})
require.Error(t, err, "must not accept a thirdPartyId belonging to another organization")
})
}