Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
b758be0d
Commit
b758be0d
authored
Jun 29, 2015
by
Alex Robinson
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #9047 from kazegusuri/allocator_test
add unit test for allocator
parents
b3aad24d
34849b44
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
144 additions
and
1 deletion
+144
-1
bitmap_test.go
pkg/registry/service/allocator/bitmap_test.go
+124
-0
utils_test.go
pkg/registry/service/allocator/utils_test.go
+20
-1
No files found.
pkg/registry/service/allocator/bitmap_test.go
0 → 100644
View file @
b758be0d
/*
Copyright 2015 The Kubernetes Authors All rights reserved.
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
allocator
import
(
"testing"
)
func
TestAllocate
(
t
*
testing
.
T
)
{
max
:=
10
m
:=
NewAllocationMap
(
max
,
"test"
)
if
_
,
ok
,
_
:=
m
.
AllocateNext
();
!
ok
{
t
.
Fatalf
(
"unexpected error"
)
}
if
m
.
count
!=
1
{
t
.
Errorf
(
"expect to get %d, but got %d"
,
1
,
m
.
count
)
}
if
f
:=
m
.
Free
();
f
!=
max
-
1
{
t
.
Errorf
(
"expect to get %d, but got %d"
,
max
-
1
,
f
)
}
}
func
TestAllocateMax
(
t
*
testing
.
T
)
{
max
:=
10
m
:=
NewAllocationMap
(
max
,
"test"
)
for
i
:=
0
;
i
<
max
;
i
++
{
if
_
,
ok
,
_
:=
m
.
AllocateNext
();
!
ok
{
t
.
Fatalf
(
"unexpected error"
)
}
}
if
_
,
ok
,
_
:=
m
.
AllocateNext
();
ok
{
t
.
Errorf
(
"unexpected success"
)
}
if
f
:=
m
.
Free
();
f
!=
0
{
t
.
Errorf
(
"expect to get %d, but got %d"
,
0
,
f
)
}
}
func
TestAllocateError
(
t
*
testing
.
T
)
{
m
:=
NewAllocationMap
(
10
,
"test"
)
if
ok
,
_
:=
m
.
Allocate
(
3
);
!
ok
{
t
.
Errorf
(
"error allocate offset %v"
,
3
)
}
if
ok
,
_
:=
m
.
Allocate
(
3
);
ok
{
t
.
Errorf
(
"unexpected success"
)
}
}
func
TestRelease
(
t
*
testing
.
T
)
{
offset
:=
3
m
:=
NewAllocationMap
(
10
,
"test"
)
if
ok
,
_
:=
m
.
Allocate
(
offset
);
!
ok
{
t
.
Errorf
(
"error allocate offset %v"
,
offset
)
}
if
!
m
.
Has
(
offset
)
{
t
.
Errorf
(
"expect offset %v allocated"
,
offset
)
}
if
err
:=
m
.
Release
(
offset
);
err
!=
nil
{
t
.
Errorf
(
"unexpected error: %v"
,
err
)
}
if
m
.
Has
(
offset
)
{
t
.
Errorf
(
"expect offset %v not allocated"
,
offset
)
}
}
func
TestSnapshotAndRestore
(
t
*
testing
.
T
)
{
offset
:=
3
m
:=
NewAllocationMap
(
10
,
"test"
)
if
ok
,
_
:=
m
.
Allocate
(
offset
);
!
ok
{
t
.
Errorf
(
"error allocate offset %v"
,
offset
)
}
spec
,
bytes
:=
m
.
Snapshot
()
m2
:=
NewAllocationMap
(
10
,
"test"
)
err
:=
m2
.
Restore
(
spec
,
bytes
)
if
err
!=
nil
{
t
.
Errorf
(
"unexpected error: %v"
,
err
)
}
if
m2
.
count
!=
1
{
t
.
Errorf
(
"expect count to %d, but got %d"
,
0
,
m
.
count
)
}
if
!
m2
.
Has
(
offset
)
{
t
.
Errorf
(
"expect offset %v allocated"
,
offset
)
}
}
func
TestContiguousAllocation
(
t
*
testing
.
T
)
{
max
:=
10
m
:=
NewContiguousAllocationMap
(
max
,
"test"
)
for
i
:=
0
;
i
<
max
;
i
++
{
next
,
ok
,
_
:=
m
.
AllocateNext
()
if
!
ok
{
t
.
Fatalf
(
"unexpected error"
)
}
if
next
!=
i
{
t
.
Fatalf
(
"expect next to %d, but got %d"
,
i
,
next
)
}
}
if
_
,
ok
,
_
:=
m
.
AllocateNext
();
ok
{
t
.
Errorf
(
"unexpected success"
)
}
}
pkg/registry/service/allocator/utils_test.go
View file @
b758be0d
...
...
@@ -16,7 +16,10 @@ limitations under the License.
package
allocator
import
"testing"
import
(
"math/big"
"testing"
)
func
TestBitCount
(
t
*
testing
.
T
)
{
for
i
,
c
:=
range
bitCounts
{
...
...
@@ -31,3 +34,19 @@ func TestBitCount(t *testing.T) {
}
}
}
func
TestCountBits
(
t
*
testing
.
T
)
{
tests
:=
[]
struct
{
n
*
big
.
Int
expected
int
}{
{
n
:
big
.
NewInt
(
int64
(
0
)),
expected
:
0
},
{
n
:
big
.
NewInt
(
int64
(
0xffffffffff
)),
expected
:
40
},
}
for
_
,
test
:=
range
tests
{
actual
:=
countBits
(
test
.
n
)
if
test
.
expected
!=
actual
{
t
.
Errorf
(
"%d should have %d bits but recorded as %d"
,
test
.
n
,
test
.
expected
,
actual
)
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment