-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: add storage_limit check (#19095)
fix: add storage_limit check (add ValidateQuotaLimit as a general method to validate quota limit value) Signed-off-by: Shengwen Yu <yshengwen@vmware.com>
- Loading branch information
Shengwen YU
authored
Aug 9, 2023
1 parent
bd34ad5
commit 90de909
Showing
6 changed files
with
157 additions
and
2 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
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,35 @@ | ||
// Copyright Project Harbor Authors | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package lib | ||
|
||
import ( | ||
"fmt" | ||
|
||
"github.com/goharbor/harbor/src/pkg/quota/types" | ||
) | ||
|
||
func ValidateQuotaLimit(storageLimit int64) error { | ||
if storageLimit <= 0 { | ||
if storageLimit != types.UNLIMITED { | ||
return fmt.Errorf("invalid non-positive value for quota limit, value=%v", storageLimit) | ||
} | ||
} else { | ||
// storageLimit > 0, there is a max capacity of limited storage | ||
if uint64(storageLimit) > types.MaxLimitedValue { | ||
return fmt.Errorf("exceeded 1024TB, which is 1125899906842624 Bytes, value=%v", storageLimit) | ||
} | ||
} | ||
return nil | ||
} |
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,51 @@ | ||
package lib | ||
|
||
import "testing" | ||
|
||
func TestValidateQuotaLimit(t *testing.T) { | ||
testCases := []struct { | ||
description string | ||
storageLimit int64 | ||
hasError bool | ||
}{ | ||
{ | ||
description: "storage limit is -2", | ||
storageLimit: -2, | ||
hasError: true, | ||
}, | ||
{ | ||
description: "storage limit is -1", | ||
storageLimit: -1, | ||
hasError: false, | ||
}, | ||
{ | ||
description: "storage limit is 0", | ||
storageLimit: 0, | ||
hasError: true, | ||
}, | ||
{ | ||
description: "storage limit is 1125899906842624", | ||
storageLimit: 1125899906842624, | ||
hasError: false, | ||
}, | ||
{ | ||
description: "storage limit is 1125899906842625", | ||
storageLimit: 1125899906842625, | ||
hasError: true, | ||
}, | ||
} | ||
|
||
for _, tc := range testCases { | ||
gotErr := ValidateQuotaLimit(tc.storageLimit) | ||
if tc.hasError { | ||
if gotErr == nil { | ||
t.Errorf("test case: %s, it expects error, while got error is nil", tc.description) | ||
} | ||
} else { | ||
// tc.hasError == false | ||
if gotErr != nil { | ||
t.Errorf("test case: %s, it doesn't expect error, while got error is not nil, gotErr=%v", tc.description, gotErr) | ||
} | ||
} | ||
} | ||
} |
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