From 53458edcf2867b440458656e5277bba9c362e3a1 Mon Sep 17 00:00:00 2001 From: Carlos Date: Wed, 4 Oct 2023 02:01:19 -0300 Subject: [PATCH] Implements the manual token input test case It starts the GUI in the manual token input scenario The GUI must then apply the token obtained from the environment This asserts that previously and newly registered distros are affected --- end-to-end/manual_token_input_test.go | 88 +++++++++++++++++++++++++++ 1 file changed, 88 insertions(+) create mode 100644 end-to-end/manual_token_input_test.go diff --git a/end-to-end/manual_token_input_test.go b/end-to-end/manual_token_input_test.go new file mode 100644 index 000000000..0892c71c4 --- /dev/null +++ b/end-to-end/manual_token_input_test.go @@ -0,0 +1,88 @@ +package endtoend_test + +import ( + "context" + "fmt" + "testing" + "time" + + "github.com/stretchr/testify/require" + wsl "github.com/ubuntu/gowsl" +) + +func TestManualTokenInput(t *testing.T) { + type whenToken int + const ( + never whenToken = iota + beforeDistroRegistration + afterDistroRegistration + ) + + // Let's be lazy and don't fall into the risk of changing the function name without updating the places where its name is used. + currentFuncName := getCurrentFuncName() + + testCases := map[string]struct { + whenToken whenToken + overrideTokenEnv string + + wantAttached bool + }{ + "Success when applying pro token before registration": {whenToken: beforeDistroRegistration, wantAttached: true}, + "Success when applying pro token after registration": {whenToken: afterDistroRegistration, wantAttached: true}, + + "Error with invalid token": {whenToken: afterDistroRegistration, overrideTokenEnv: fmt.Sprintf("%s=%s", proTokenEnv, "CJd8MMN8wXSWsv7wJT8c8dDK")}, + } + + for name, tc := range testCases { + tc := tc + t.Run(name, func(t *testing.T) { + ctx := context.Background() + + testSetup(t) + + // Either runs the ubuntupro app before... + if tc.whenToken == beforeDistroRegistration { + cleanup := startAgent(t, ctx, currentFuncName, tc.overrideTokenEnv) + defer cleanup() + } + + // Distro setup + name := registerFromTestImage(t, ctx) + d := wsl.NewDistro(ctx, name) + + defer logWslProServiceJournal(t, ctx, d) + + out, err := d.Command(ctx, "exit 0").CombinedOutput() + require.NoErrorf(t, err, "Setup: could not wake distro up: %v. %s", err, out) + + // ... or after registration, but never both. + if tc.whenToken == afterDistroRegistration { + // the exact time between registering the distro and running the app cannot be determined, so there is a chance + // of this starting the app before registration completes. + time.Sleep(5 * time.Second) + cleanup := startAgent(t, ctx, currentFuncName, tc.overrideTokenEnv) + defer cleanup() + + } + + time.Sleep(5 * time.Second) + out, err = d.Command(ctx, "exit 0").CombinedOutput() + require.NoErrorf(t, err, "Setup: could not wake distro up: %v. %s", err, out) + + if !tc.wantAttached { + attached, err := distroIsProAttached(t, d) + require.NoError(t, err, "could not determine if distro is attached") + require.False(t, attached, "distro should not have been Pro attached") + return + } + + require.Eventually(t, func() bool { + attached, err := distroIsProAttached(t, d) + if err != nil { + t.Logf("could not determine if distro is attached: %v", err) + } + return attached + }, 30*time.Second, time.Second, "distro should have been Pro attached") + }) + } +}