-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Write a test for Basic Types such as boolean, short, double, and string. Not include long type testing in this patch because it has some problem. We should fix the issue in follow-up patch. ISSUE=#99,#100
- Loading branch information
Showing
4 changed files
with
91 additions
and
0 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,63 @@ | ||
/** | ||
* Copyright (c) 2017 The Bacardi 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. | ||
*/ | ||
|
||
import * as bindings from 'bindings'; | ||
|
||
const bacardi = bindings('bacardi.node'); | ||
|
||
test('Test for IDL \'boolean\' type', async () => { | ||
let test_interface = new bacardi.TestInterface(); | ||
|
||
// The boolean type has two values: true and false. | ||
expect(test_interface.booleanMethod(true)).toBe(true); | ||
expect(test_interface.booleanMethod(false)).toBe(false); | ||
}); | ||
|
||
test('Test for IDL \'short\' type', async () => { | ||
let test_interface = new bacardi.TestInterface(); | ||
|
||
// The short type is a signed integer type that has values in the range | ||
// [−32768, 32767]. | ||
expect(test_interface.shortMethod(32767)).toBe(32767); | ||
expect(test_interface.shortMethod(-32768)).toBe(-32768); | ||
expect(test_interface.shortMethod(32768) != 32768).toBe(true); | ||
expect(test_interface.shortMethod(-32769) != -32769).toBe(true); | ||
}); | ||
|
||
// FIXME(zino): We should write a test for long type. | ||
// Please see: https://github.com/lunchclass/bacardi/issues/120 | ||
|
||
test('Test for IDL \'double\' type', async () => { | ||
let test_interface = new bacardi.TestInterface(); | ||
|
||
// The double type is a floating point numeric type that corresponds to the | ||
// set of finite double-precision 64 bit IEEE 754 floating point numbers. | ||
expect(test_interface.doubleMethod(0.123456789012345)) | ||
.toBe(0.123456789012345); | ||
|
||
// FIXME(zino): We should test for comparing single-precision floating point. | ||
|
||
// FIXME(zino): We should check whether the type is restricted or | ||
// unrestricted. | ||
}); | ||
|
||
test('Test for IDL \'string\' type', async () => { | ||
let test_interface = new bacardi.TestInterface(); | ||
|
||
// The string type is not exact matching WebIDL spec but it will convert | ||
// UTF8 string in platform side. | ||
expect(test_interface.stringMethod('Hello World!')).toBe('Hello World!'); | ||
}); |
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