-
Notifications
You must be signed in to change notification settings - Fork 8.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improved test coverage for bccsp/utils
This change-set improves the test coverage of the bccsp/utils package Change-Id: Iccef021c18e227abd14b7e7aa88928d11aff0903 Signed-off-by: Angelo De Caro <adc@zurich.ibm.com>
- Loading branch information
Showing
7 changed files
with
355 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* | ||
Copyright IBM Corp. 2017 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 utils | ||
|
||
import ( | ||
"errors" | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestErrToString(t *testing.T) { | ||
assert.Equal(t, ErrToString(errors.New("error")), "error") | ||
|
||
assert.Equal(t, ErrToString(nil), "<clean>") | ||
|
||
} |
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,74 @@ | ||
/* | ||
Copyright IBM Corp. 2017 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 utils | ||
|
||
import ( | ||
"os" | ||
"path/filepath" | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestDirExists(t *testing.T) { | ||
r, err := DirExists("") | ||
assert.False(t, r) | ||
assert.NoError(t, err) | ||
|
||
r, err = DirExists(os.TempDir()) | ||
assert.NoError(t, err) | ||
assert.Equal(t, true, r) | ||
|
||
r, err = DirExists(filepath.Join(os.TempDir(), "7rhf90239vhev90")) | ||
assert.NoError(t, err) | ||
assert.Equal(t, false, r) | ||
} | ||
|
||
func TestDirMissingOrEmpty(t *testing.T) { | ||
r, err := DirMissingOrEmpty("") | ||
assert.NoError(t, err) | ||
assert.True(t, r) | ||
|
||
r, err = DirMissingOrEmpty(filepath.Join(os.TempDir(), "7rhf90239vhev90")) | ||
assert.NoError(t, err) | ||
assert.Equal(t, true, r) | ||
} | ||
|
||
func TestDirEmpty(t *testing.T) { | ||
_, err := DirEmpty("") | ||
assert.Error(t, err) | ||
|
||
path := filepath.Join(os.TempDir(), "7rhf90239vhev90") | ||
defer os.Remove(path) | ||
os.Mkdir(path, os.ModePerm) | ||
|
||
r, err := DirEmpty(path) | ||
assert.NoError(t, err) | ||
assert.Equal(t, true, r) | ||
|
||
r, err = DirEmpty(os.TempDir()) | ||
assert.NoError(t, err) | ||
assert.Equal(t, false, r) | ||
|
||
r, err = DirMissingOrEmpty(os.TempDir()) | ||
assert.NoError(t, err) | ||
assert.Equal(t, false, r) | ||
|
||
r, err = DirMissingOrEmpty(path) | ||
assert.NoError(t, err) | ||
assert.Equal(t, true, r) | ||
} |
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,29 @@ | ||
/* | ||
Copyright IBM Corp. 2017 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 utils | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestClone(t *testing.T) { | ||
src := []byte{0, 1, 2, 3, 4} | ||
clone := Clone(src) | ||
assert.Equal(t, src, clone) | ||
} |
Oops, something went wrong.