-
Notifications
You must be signed in to change notification settings - Fork 993
use redis to block double profile work for apple devices setting up #42421
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
Merged
MagnusHJensen
merged 12 commits into
main
from
34433-add-redis-to-block-double-profile-work
Mar 30, 2026
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
eaff013
use redis to block double profile work for apple devices setting up
MagnusHJensen 4f34170
fix mocks and logic bug
MagnusHJensen 1ad9aa7
fix lint
MagnusHJensen bce500b
fix test cases and run profile installation on manual enrollment as well
MagnusHJensen 5820800
fix additional tests
MagnusHJensen c4e8701
fix more test cases
MagnusHJensen d27c57d
fix logic bugs
MagnusHJensen 321b3e3
fix remaining test cases
MagnusHJensen 8e6babb
fix more test cases
MagnusHJensen 2f78b2b
clean nano tables on between each test
MagnusHJensen 007e5d2
fix sso tests
MagnusHJensen b2878fa
Update server/fleet/mdm.go
MagnusHJensen File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,65 @@ | ||
| // Automatically generated by mockimpl. DO NOT EDIT! | ||
|
|
||
| package mock | ||
|
|
||
| import ( | ||
| "context" | ||
| "sync" | ||
| "time" | ||
|
|
||
| "github.com/fleetdm/fleet/v4/server/fleet" | ||
| ) | ||
|
|
||
| var _ fleet.AdvancedKeyValueStore = (*AdvancedKeyValueStore)(nil) | ||
|
|
||
| type SetFunc func(ctx context.Context, key string, value string, expireTime time.Duration) error | ||
|
|
||
| type GetFunc func(ctx context.Context, key string) (*string, error) | ||
|
|
||
| type MGetFunc func(ctx context.Context, keys []string) (map[string]*string, error) | ||
|
|
||
| type DeleteFunc func(ctx context.Context, key string) error | ||
|
|
||
| type AdvancedKeyValueStore struct { | ||
| SetFunc SetFunc | ||
| SetFuncInvoked bool | ||
|
|
||
| GetFunc GetFunc | ||
| GetFuncInvoked bool | ||
|
|
||
| MGetFunc MGetFunc | ||
| MGetFuncInvoked bool | ||
|
|
||
| DeleteFunc DeleteFunc | ||
| DeleteFuncInvoked bool | ||
|
|
||
| mu sync.Mutex | ||
| } | ||
|
|
||
| func (akv *AdvancedKeyValueStore) Set(ctx context.Context, key string, value string, expireTime time.Duration) error { | ||
| akv.mu.Lock() | ||
| akv.SetFuncInvoked = true | ||
| akv.mu.Unlock() | ||
| return akv.SetFunc(ctx, key, value, expireTime) | ||
| } | ||
|
|
||
| func (akv *AdvancedKeyValueStore) Get(ctx context.Context, key string) (*string, error) { | ||
| akv.mu.Lock() | ||
| akv.GetFuncInvoked = true | ||
| akv.mu.Unlock() | ||
| return akv.GetFunc(ctx, key) | ||
| } | ||
|
|
||
| func (akv *AdvancedKeyValueStore) MGet(ctx context.Context, keys []string) (map[string]*string, error) { | ||
| akv.mu.Lock() | ||
| akv.MGetFuncInvoked = true | ||
| akv.mu.Unlock() | ||
| return akv.MGetFunc(ctx, keys) | ||
| } | ||
|
|
||
| func (akv *AdvancedKeyValueStore) Delete(ctx context.Context, key string) error { | ||
| akv.mu.Lock() | ||
| akv.DeleteFuncInvoked = true | ||
| akv.mu.Unlock() | ||
| return akv.DeleteFunc(ctx, key) | ||
| } |
This file contains hidden or 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 hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.