-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a login service to the jimm layer (#1314)
* add a login service to the jimm layer * fix test due to changed error message * add tests and move UserLogin method The GetUser and UpdateUserLastLogin have been unexported in favour of UserLogin. The tests in admin_test.go use a mock authenticator but primarily verify that the new methods in jimm/admin.go perform the expected validation and have the baseline desired behaviour. * remove redundant mock function * fix test timeout * add comment about service account IDs * fix test and reduce duplication - fixed a test I broke with the recent change. - reduced the cognitive complexity of `handleAdminFacade` by reducing code duplication. * update godoc for LoginWithSessionCookie
- Loading branch information
Showing
17 changed files
with
444 additions
and
349 deletions.
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,137 @@ | ||
// Copyright 2024 Canonical. | ||
|
||
package jimm_test | ||
|
||
import ( | ||
"context" | ||
"encoding/base64" | ||
"testing" | ||
"time" | ||
|
||
qt "github.com/frankban/quicktest" | ||
"github.com/google/go-cmp/cmp/cmpopts" | ||
"github.com/lestrrat-go/jwx/v2/jwt" | ||
"golang.org/x/oauth2" | ||
|
||
"github.com/canonical/jimm/v3/internal/db" | ||
"github.com/canonical/jimm/v3/internal/jimm" | ||
"github.com/canonical/jimm/v3/internal/jimmtest" | ||
) | ||
|
||
func TestLoginDevice(t *testing.T) { | ||
c := qt.New(t) | ||
mockAuthenticator := jimmtest.NewMockOAuthAuthenticator(c, nil) | ||
jimm := jimm.JIMM{ | ||
OAuthAuthenticator: &mockAuthenticator, | ||
} | ||
resp, err := jimm.LoginDevice(context.Background()) | ||
c.Assert(err, qt.IsNil) | ||
c.Assert(*resp, qt.CmpEquals(cmpopts.IgnoreTypes(time.Time{})), oauth2.DeviceAuthResponse{ | ||
DeviceCode: "test-device-code", | ||
UserCode: "test-user-code", | ||
VerificationURI: "http://no-such-uri.canonical.com", | ||
VerificationURIComplete: "http://no-such-uri.canonical.com", | ||
Interval: int64(time.Minute.Seconds()), | ||
}) | ||
} | ||
|
||
func TestGetDeviceSessionToken(t *testing.T) { | ||
c := qt.New(t) | ||
pollingChan := make(chan string, 1) | ||
mockAuthenticator := jimmtest.NewMockOAuthAuthenticator(c, pollingChan) | ||
jimm := jimm.JIMM{ | ||
OAuthAuthenticator: &mockAuthenticator, | ||
} | ||
pollingChan <- "user-foo" | ||
token, err := jimm.GetDeviceSessionToken(context.Background(), nil) | ||
c.Assert(err, qt.IsNil) | ||
c.Assert(token, qt.Not(qt.Equals), "") | ||
decodedToken, err := base64.StdEncoding.DecodeString(token) | ||
c.Assert(err, qt.IsNil) | ||
parsedToken, err := jwt.ParseInsecure([]byte(decodedToken)) | ||
c.Assert(err, qt.IsNil) | ||
c.Assert(parsedToken.Subject(), qt.Equals, "[email protected]") | ||
} | ||
|
||
func TestLoginClientCredentials(t *testing.T) { | ||
c := qt.New(t) | ||
mockAuthenticator := jimmtest.NewMockOAuthAuthenticator(c, nil) | ||
client, _, _, err := jimmtest.SetupTestOFGAClient(c.Name(), t.Name()) | ||
c.Assert(err, qt.IsNil) | ||
jimm := jimm.JIMM{ | ||
UUID: "foo", | ||
Database: db.Database{ | ||
DB: jimmtest.PostgresDB(c, func() time.Time { return now }), | ||
}, | ||
OAuthAuthenticator: &mockAuthenticator, | ||
OpenFGAClient: client, | ||
} | ||
ctx := context.Background() | ||
err = jimm.Database.Migrate(ctx, false) | ||
c.Assert(err, qt.IsNil) | ||
invalidClientID := "123@123@" | ||
_, err = jimm.LoginClientCredentials(ctx, invalidClientID, "foo-secret") | ||
c.Assert(err, qt.ErrorMatches, "invalid client ID") | ||
|
||
validClientID := "my-svc-acc" | ||
user, err := jimm.LoginClientCredentials(ctx, validClientID, "foo-secret") | ||
c.Assert(err, qt.IsNil) | ||
c.Assert(user.Name, qt.Equals, "my-svc-acc@serviceaccount") | ||
} | ||
|
||
func TestLoginWithSessionToken(t *testing.T) { | ||
c := qt.New(t) | ||
mockAuthenticator := jimmtest.NewMockOAuthAuthenticator(c, nil) | ||
client, _, _, err := jimmtest.SetupTestOFGAClient(c.Name(), t.Name()) | ||
c.Assert(err, qt.IsNil) | ||
jimm := jimm.JIMM{ | ||
UUID: "foo", | ||
Database: db.Database{ | ||
DB: jimmtest.PostgresDB(c, func() time.Time { return now }), | ||
}, | ||
OAuthAuthenticator: &mockAuthenticator, | ||
OpenFGAClient: client, | ||
} | ||
ctx := context.Background() | ||
err = jimm.Database.Migrate(ctx, false) | ||
c.Assert(err, qt.IsNil) | ||
|
||
token, err := jwt.NewBuilder(). | ||
Subject("[email protected]"). | ||
Build() | ||
serialisedToken, err := jwt.NewSerializer().Serialize(token) | ||
c.Assert(err, qt.IsNil) | ||
b64Token := base64.StdEncoding.EncodeToString(serialisedToken) | ||
|
||
_, err = jimm.LoginWithSessionToken(ctx, "invalid-token") | ||
c.Assert(err, qt.ErrorMatches, "failed to decode token") | ||
|
||
user, err := jimm.LoginWithSessionToken(ctx, b64Token) | ||
c.Assert(err, qt.IsNil) | ||
c.Assert(user.Name, qt.Equals, "[email protected]") | ||
} | ||
|
||
func TestLoginWithSessionCookie(t *testing.T) { | ||
c := qt.New(t) | ||
mockAuthenticator := jimmtest.NewMockOAuthAuthenticator(c, nil) | ||
client, _, _, err := jimmtest.SetupTestOFGAClient(c.Name(), t.Name()) | ||
c.Assert(err, qt.IsNil) | ||
jimm := jimm.JIMM{ | ||
UUID: "foo", | ||
Database: db.Database{ | ||
DB: jimmtest.PostgresDB(c, func() time.Time { return now }), | ||
}, | ||
OAuthAuthenticator: &mockAuthenticator, | ||
OpenFGAClient: client, | ||
} | ||
ctx := context.Background() | ||
err = jimm.Database.Migrate(ctx, false) | ||
c.Assert(err, qt.IsNil) | ||
|
||
_, err = jimm.LoginWithSessionCookie(ctx, "") | ||
c.Assert(err, qt.ErrorMatches, "missing cookie identity") | ||
|
||
user, err := jimm.LoginWithSessionCookie(ctx, "[email protected]") | ||
c.Assert(err, qt.IsNil) | ||
c.Assert(user.Name, qt.Equals, "[email protected]") | ||
} |
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
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
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
Oops, something went wrong.