Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

migrate certauth tests to e2e #150

Merged
merged 1 commit into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
171 changes: 0 additions & 171 deletions service/certauth/certauth_test.go

This file was deleted.

118 changes: 118 additions & 0 deletions test/e2e/certauth.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
package e2e

import (
"context"
"errors"
"testing"

"github.com/groob/plist"
"github.com/micromdm/nanomdm/mdm"
"github.com/micromdm/nanomdm/service/certauth"
"github.com/micromdm/nanomdm/storage"
"github.com/micromdm/nanomdm/test"
"github.com/micromdm/nanomdm/test/enrollment"
)

func certAuth(t *testing.T, ctx context.Context, store storage.CertAuthStore) {
d, auth, tok, err := setupEnrollment()
if err != nil {
t.Fatal(err)
}

// init service
svc := certauth.New(&test.NopService{}, store)

// send a non-Authenticate message (without an initial Authenticate message)
err = svc.TokenUpdate(d.NewMDMRequest(ctx), tok)
expectErr(t, err, certauth.ErrNoCertAssoc)

// send another one to make sure we're not accidentally allowing retroactive mode
err = svc.TokenUpdate(d.NewMDMRequest(ctx), tok)
expectErr(t, err, certauth.ErrNoCertAssoc)

// sent an authenticate message. this should associate our cert hash.
err = svc.Authenticate(d.NewMDMRequest(ctx), auth)
expectErr(t, err, nil)

// now send an a message that should be authenticated
err = svc.TokenUpdate(d.NewMDMRequest(ctx), tok)
expectErr(t, err, nil)

// lets swap out the device identity. i.e. attempt to spoof the device with another cert.
err = enrollment.ReplaceIdentityRandom(d)
if err != nil {
t.Fatal(err)
}

// try the spoofed request
err = svc.TokenUpdate(d.NewMDMRequest(ctx), tok)
expectErr(t, err, certauth.ErrNoCertAssoc)
}

func certAuthRetro(t *testing.T, ctx context.Context, store storage.CertAuthStore) {
d, _, tok, err := setupEnrollment()
if err != nil {
t.Fatal(err)
}

// init service with retroactive
svc := certauth.New(&test.NopService{}, store, certauth.WithAllowRetroactive())

// without retroactive a non-Authenticate message would generate an ErrNoCertAssoc.
// however with retro on it should allow the association.
err = svc.TokenUpdate(d.NewMDMRequest(ctx), tok)
expectErr(t, err, nil)

// send another one to make sure the reto association is still good.
err = svc.TokenUpdate(d.NewMDMRequest(ctx), tok)
expectErr(t, err, nil)

// lets swap out the device identity. i.e. attempt to spoof the device with another cert.
err = enrollment.ReplaceIdentityRandom(d)
if err != nil {
t.Fatal(err)
}

// try the spoofed request post-association
err = svc.TokenUpdate(d.NewMDMRequest(ctx), tok)
expectErr(t, err, certauth.ErrNoCertReuse)
}

func expectErr(t *testing.T, have, want error) {
if !errors.Is(have, want) {
t.Helper()
t.Errorf("have: %v; want: %v", have, want)
}
}

func setupEnrollment() (*enrollment.Enrollment, *mdm.Authenticate, *mdm.TokenUpdate, error) {
// create our test device
d, err := enrollment.NewRandomDeviceEnrollment(nil, "com.apple.test-topic", "/", "")
if err != nil {
return d, nil, nil, err
}

// gen the Authenticate msg and turn into NanoMDM msg
r, err := d.GenAuthenticate()
if err != nil {
return d, nil, nil, err
}
auth := new(mdm.Authenticate)
err = plist.NewDecoder(r).Decode(auth)
if err != nil {
return d, auth, nil, err
}

// gen the TokenUpdate msg and turn into NanoMDM msg
r, err = d.GenTokenUpdate()
if err != nil {
return d, auth, nil, err
}
tok := new(mdm.TokenUpdate)
err = plist.NewDecoder(r).Decode(tok)
if err != nil {
return d, auth, tok, err
}

return d, auth, tok, err
}
3 changes: 3 additions & 0 deletions test/e2e/e2e.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@ func TestE2E(t *testing.T, ctx context.Context, store storage.AllStorage) {
t.Fatal(err)
}

t.Run("certauth", func(t *testing.T) { certAuth(t, ctx, store) })
t.Run("certauth-retro", func(t *testing.T) { certAuthRetro(t, ctx, store) })

// regression test for retrieving push info of missing devices.
t.Run("invalid-pushinfo", func(t *testing.T) {
_, err := store.RetrievePushInfo(ctx, []string{"INVALID"})
Expand Down
Loading