michael@0: /* Any copyright is dedicated to the Public Domain.
michael@0: http://creativecommons.org/publicdomain/zero/1.0/ */
michael@0:
michael@0: let CP = {};
michael@0: subscriptLoader.loadSubScript("resource://gre/modules/CpPduHelper.jsm", CP);
michael@0: CP.debug = do_print;
michael@0:
michael@0: function run_test() {
michael@0: run_next_test();
michael@0: }
michael@0:
michael@0: function test_parser(rawDataArray, contentType, expectResult) {
michael@0: let data = { array: rawDataArray, offset: 0 };
michael@0: let msg = CP.PduHelper.parse(data, contentType);
michael@0: do_check_eq(msg.contentType, expectResult.contentType);
michael@0: do_check_eq(msg.content, expectResult.content);
michael@0: do_check_eq(msg.content.length, expectResult.content.length);
michael@0: }
michael@0:
michael@0: function test_hmac(rawDataArray, mac, key, expectResult) {
michael@0: let authInfo = CP.Authenticator.check(rawDataArray, 0, mac, function getNetworkPin() {
michael@0: return key;
michael@0: });
michael@0: do_check_eq(authInfo.data, rawDataArray);
michael@0: do_check_eq(authInfo.data.length, rawDataArray.length);
michael@0: do_check_eq(authInfo.checked, expectResult.checked);
michael@0: do_check_eq(authInfo.pass, expectResult.pass);
michael@0: }
michael@0:
michael@0: /*
michael@0: * Test data from OMA-TS-WAP_ProvCont-V1_1-2009 0421-C.pdf, clause 6.1
michael@0: */
michael@0: let text_data_array = new Uint8Array([
michael@0: 0x3C, 0x3F, 0x78, 0x6D, 0x6C, 0x20, 0x76, 0x65,
michael@0: 0x72, 0x73, 0x69, 0x6F, 0x6E, 0x3D, 0x22, 0x31,
michael@0: 0x2E, 0x30, 0x22, 0x3F, 0x3E, 0x3C, 0x21, 0x44,
michael@0: 0x4F, 0x43, 0x54, 0x59, 0x50, 0x45, 0x20, 0x77,
michael@0: 0x61, 0x70, 0x2D, 0x70, 0x72, 0x6F, 0x76, 0x69,
michael@0: 0x73, 0x69, 0x6F, 0x6E, 0x69, 0x6E, 0x67, 0x64,
michael@0: 0x6F, 0x63, 0x20, 0x50, 0x55, 0x42, 0x4C, 0x49,
michael@0: 0x43, 0x20, 0x22, 0x2D, 0x2F, 0x2F, 0x57, 0x41,
michael@0: 0x50, 0x46, 0x4F, 0x52, 0x55, 0x4D, 0x2F, 0x2F,
michael@0: 0x44, 0x54, 0x44, 0x20, 0x50, 0x52, 0x4F, 0x56,
michael@0: 0x20, 0x31, 0x2E, 0x30, 0x2F, 0x2F, 0x45, 0x4E,
michael@0: 0x22, 0x20, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3A,
michael@0: 0x2F, 0x2F, 0x77, 0x77, 0x77, 0x2E, 0x77, 0x61,
michael@0: 0x70, 0x66, 0x6F, 0x72, 0x75, 0x6D, 0x2E, 0x6F,
michael@0: 0x72, 0x67, 0x2F, 0x44, 0x54, 0x44, 0x2F, 0x70,
michael@0: 0x72, 0x6F, 0x76, 0x2E, 0x64, 0x74, 0x64, 0x22,
michael@0: 0x3E, 0x3C, 0x77, 0x61, 0x70, 0x2D, 0x70, 0x72,
michael@0: 0x6F, 0x76, 0x69, 0x73, 0x69, 0x6F, 0x6E, 0x69,
michael@0: 0x6E, 0x67, 0x64, 0x6F, 0x63, 0x20, 0x76, 0x65,
michael@0: 0x72, 0x73, 0x69, 0x6F, 0x6E, 0x3D, 0x22, 0x31,
michael@0: 0x2E, 0x30, 0x22, 0x3E, 0x3C, 0x63, 0x68, 0x61,
michael@0: 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x69, 0x73,
michael@0: 0x74, 0x69, 0x63, 0x20, 0x74, 0x79, 0x70, 0x65,
michael@0: 0x3D, 0x22, 0x50, 0x58, 0x4C, 0x4F, 0x47, 0x49,
michael@0: 0x43, 0x41, 0x4C, 0x22, 0x3E, 0x3C, 0x70, 0x61,
michael@0: 0x72, 0x6D, 0x20, 0x6E, 0x61, 0x6D, 0x65, 0x3D,
michael@0: 0x22, 0x50, 0x52, 0x4F, 0x58, 0x59, 0x2D, 0x49,
michael@0: 0x44, 0x22, 0x20, 0x76, 0x61, 0x6C, 0x75, 0x65,
michael@0: 0x3D, 0x22, 0x31, 0x37, 0x30, 0x2E, 0x31, 0x38,
michael@0: 0x37, 0x2E, 0x35, 0x31, 0x2E, 0x34, 0x22, 0x2F,
michael@0: 0x3E, 0x3C, 0x70, 0x61, 0x72, 0x6D, 0x20, 0x6E,
michael@0: 0x61, 0x6D, 0x65, 0x3D, 0x22, 0x50, 0x52, 0x4F,
michael@0: 0x58, 0x59, 0x2D, 0x50, 0x57, 0x22, 0x20, 0x76,
michael@0: 0x61, 0x6C, 0x75, 0x65, 0x3D, 0x22, 0x70, 0x72,
michael@0: 0x6F, 0x78, 0x79, 0x70, 0x61, 0x73, 0x73, 0x77,
michael@0: 0x64, 0x22, 0x2F, 0x3E, 0x3C, 0x70, 0x61, 0x72,
michael@0: 0x6D, 0x20, 0x6E, 0x61, 0x6D, 0x65, 0x3D, 0x22,
michael@0: 0x50, 0x50, 0x47, 0x41, 0x55, 0x54, 0x48, 0x2D,
michael@0: 0x54, 0x59, 0x50, 0x45, 0x22, 0x20, 0x76, 0x61,
michael@0: 0x6C, 0x75, 0x65, 0x3D, 0x22, 0x48, 0x54, 0x54,
michael@0: 0x50, 0x2D, 0x42, 0x41, 0x53, 0x49, 0x43, 0x22,
michael@0: 0x2F, 0x3E, 0x3C, 0x70, 0x61, 0x72, 0x6D, 0x20,
michael@0: 0x6E, 0x61, 0x6D, 0x65, 0x3D, 0x22, 0x4E, 0x41,
michael@0: 0x4D, 0x45, 0x22, 0x20, 0x76, 0x61, 0x6C, 0x75,
michael@0: 0x65, 0x3D, 0x22, 0x42, 0x61, 0x6E, 0x6B, 0x4D,
michael@0: 0x61, 0x69, 0x6E, 0x50, 0x72, 0x6F, 0x78, 0x79,
michael@0: 0x22, 0x2F, 0x3E, 0x3C, 0x70, 0x61, 0x72, 0x6D,
michael@0: 0x20, 0x6E, 0x61, 0x6D, 0x65, 0x3D, 0x22, 0x53,
michael@0: 0x54, 0x41, 0x52, 0x54, 0x50, 0x41, 0x47, 0x45,
michael@0: 0x22, 0x20, 0x76, 0x61, 0x6C, 0x75, 0x65, 0x3D,
michael@0: 0x22, 0x68, 0x74, 0x74, 0x70, 0x3A, 0x2F, 0x2F,
michael@0: 0x77, 0x77, 0x77, 0x2E, 0x62, 0x61, 0x6E, 0x6B,
michael@0: 0x2E, 0x63, 0x6F, 0x6D, 0x2F, 0x73, 0x74, 0x61,
michael@0: 0x72, 0x74, 0x70, 0x61, 0x67, 0x65, 0x2E, 0x77,
michael@0: 0x6D, 0x6C, 0x22, 0x2F, 0x3E, 0x3C, 0x70, 0x61,
michael@0: 0x72, 0x6D, 0x20, 0x6E, 0x61, 0x6D, 0x65, 0x3D,
michael@0: 0x22, 0x50, 0x55, 0x4C, 0x4C, 0x45, 0x4E, 0x41,
michael@0: 0x42, 0x4C, 0x45, 0x44, 0x22, 0x20, 0x76, 0x61,
michael@0: 0x6C, 0x75, 0x65, 0x3D, 0x22, 0x31, 0x22, 0x2F,
michael@0: 0x3E, 0x3C, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63,
michael@0: 0x74, 0x65, 0x72, 0x69, 0x73, 0x74, 0x69, 0x63,
michael@0: 0x20, 0x74, 0x79, 0x70, 0x65, 0x3D, 0x22, 0x50,
michael@0: 0x58, 0x41, 0x55, 0x54, 0x48, 0x49, 0x4E, 0x46,
michael@0: 0x4F, 0x22, 0x3E, 0x3C, 0x70, 0x61, 0x72, 0x6D,
michael@0: 0x20, 0x6E, 0x61, 0x6D, 0x65, 0x3D, 0x22, 0x50,
michael@0: 0x58, 0x41, 0x55, 0x54, 0x48, 0x2D, 0x54, 0x59,
michael@0: 0x50, 0x45, 0x22, 0x20, 0x76, 0x61, 0x6C, 0x75,
michael@0: 0x65, 0x3D, 0x22, 0x48, 0x54, 0x54, 0x50, 0x2D,
michael@0: 0x42, 0x41, 0x53, 0x49, 0x43, 0x22, 0x2F, 0x3E,
michael@0: 0x3C, 0x70, 0x61, 0x72, 0x6D, 0x20, 0x6E, 0x61,
michael@0: 0x6D, 0x65, 0x3D, 0x22, 0x50, 0x58, 0x41, 0x55,
michael@0: 0x54, 0x48, 0x2D, 0x49, 0x44, 0x22, 0x20, 0x76,
michael@0: 0x61, 0x6C, 0x75, 0x65, 0x3D, 0x22, 0x70, 0x78,
michael@0: 0x75, 0x73, 0x65, 0x72, 0x6E, 0x61, 0x6D, 0x65,
michael@0: 0x22, 0x2F, 0x3E, 0x3C, 0x70, 0x61, 0x72, 0x6D,
michael@0: 0x20, 0x6E, 0x61, 0x6D, 0x65, 0x3D, 0x22, 0x50,
michael@0: 0x58, 0x41, 0x55, 0x54, 0x48, 0x2D, 0x50, 0x57,
michael@0: 0x22, 0x20, 0x76, 0x61, 0x6C, 0x75, 0x65, 0x3D,
michael@0: 0x22, 0x70, 0x78, 0x75, 0x73, 0x65, 0x72, 0x70,
michael@0: 0x61, 0x73, 0x73, 0x77, 0x64, 0x22, 0x2F, 0x3E,
michael@0: 0x3C, 0x2F, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63,
michael@0: 0x74, 0x65, 0x72, 0x69, 0x73, 0x74, 0x69, 0x63,
michael@0: 0x3E, 0x3C, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63,
michael@0: 0x74, 0x65, 0x72, 0x69, 0x73, 0x74, 0x69, 0x63,
michael@0: 0x20, 0x74, 0x79, 0x70, 0x65, 0x3D, 0x22, 0x50,
michael@0: 0x58, 0x50, 0x48, 0x59, 0x53, 0x49, 0x43, 0x41,
michael@0: 0x4C, 0x22, 0x3E, 0x3C, 0x70, 0x61, 0x72, 0x6D,
michael@0: 0x20, 0x6E, 0x61, 0x6D, 0x65, 0x3D, 0x22, 0x50,
michael@0: 0x48, 0x59, 0x53, 0x49, 0x43, 0x41, 0x4C, 0x2D,
michael@0: 0x50, 0x52, 0x4F, 0x58, 0x59, 0x2D, 0x49, 0x44,
michael@0: 0x22, 0x20, 0x76, 0x61, 0x6C, 0x75, 0x65, 0x3D,
michael@0: 0x22, 0x50, 0x52, 0x4F, 0x58, 0x59, 0x20, 0x31,
michael@0: 0x22, 0x2F, 0x3E, 0x3C, 0x70, 0x61, 0x72, 0x6D,
michael@0: 0x20, 0x6E, 0x61, 0x6D, 0x65, 0x3D, 0x22, 0x44,
michael@0: 0x4F, 0x4D, 0x41, 0x49, 0x4E, 0x22, 0x20, 0x76,
michael@0: 0x61, 0x6C, 0x75, 0x65, 0x3D, 0x22, 0x77, 0x77,
michael@0: 0x77, 0x2E, 0x62, 0x61, 0x6E, 0x6B, 0x2E, 0x63,
michael@0: 0x6F, 0x6D, 0x2F, 0x22, 0x2F, 0x3E, 0x3C, 0x70,
michael@0: 0x61, 0x72, 0x6D, 0x20, 0x6E, 0x61, 0x6D, 0x65,
michael@0: 0x3D, 0x22, 0x50, 0x58, 0x41, 0x44, 0x44, 0x52,
michael@0: 0x22, 0x20, 0x76, 0x61, 0x6C, 0x75, 0x65, 0x3D,
michael@0: 0x22, 0x31, 0x37, 0x30, 0x2E, 0x31, 0x38, 0x37,
michael@0: 0x2E, 0x35, 0x31, 0x2E, 0x33, 0x22, 0x2F, 0x3E,
michael@0: 0x3C, 0x70, 0x61, 0x72, 0x6D, 0x20, 0x6E, 0x61,
michael@0: 0x6D, 0x65, 0x3D, 0x22, 0x50, 0x58, 0x41, 0x44,
michael@0: 0x44, 0x52, 0x54, 0x59, 0x50, 0x45, 0x22, 0x20,
michael@0: 0x76, 0x61, 0x6C, 0x75, 0x65, 0x3D, 0x22, 0x49,
michael@0: 0x50, 0x56, 0x34, 0x22, 0x2F, 0x3E, 0x3C, 0x70,
michael@0: 0x61, 0x72, 0x6D, 0x20, 0x6E, 0x61, 0x6D, 0x65,
michael@0: 0x3D, 0x22, 0x50, 0x58, 0x41, 0x44, 0x44, 0x52,
michael@0: 0x2D, 0x46, 0x51, 0x44, 0x4E, 0x22, 0x20, 0x76,
michael@0: 0x61, 0x6C, 0x75, 0x65, 0x3D, 0x22, 0x70, 0x72,
michael@0: 0x6F, 0x78, 0x79, 0x31, 0x2E, 0x6F, 0x70, 0x65,
michael@0: 0x72, 0x61, 0x74, 0x6F, 0x72, 0x2E, 0x63, 0x6F,
michael@0: 0x6D, 0x22, 0x2F, 0x3E, 0x3C, 0x70, 0x61, 0x72,
michael@0: 0x6D, 0x20, 0x6E, 0x61, 0x6D, 0x65, 0x3D, 0x22,
michael@0: 0x54, 0x4F, 0x2D, 0x4E, 0x41, 0x50, 0x49, 0x44,
michael@0: 0x22, 0x20, 0x76, 0x61, 0x6C, 0x75, 0x65, 0x3D,
michael@0: 0x22, 0x49, 0x4E, 0x54, 0x45, 0x52, 0x4E, 0x45,
michael@0: 0x54, 0x22, 0x2F, 0x3E, 0x3C, 0x70, 0x61, 0x72,
michael@0: 0x6D, 0x20, 0x6E, 0x61, 0x6D, 0x65, 0x3D, 0x22,
michael@0: 0x54, 0x4F, 0x2D, 0x4E, 0x41, 0x50, 0x49, 0x44,
michael@0: 0x22, 0x20, 0x76, 0x61, 0x6C, 0x75, 0x65, 0x3D,
michael@0: 0x22, 0x4E, 0x41, 0x50, 0x31, 0x22, 0x2F, 0x3E,
michael@0: 0x3C, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74,
michael@0: 0x65, 0x72, 0x69, 0x73, 0x74, 0x69, 0x63, 0x20,
michael@0: 0x74, 0x79, 0x70, 0x65, 0x3D, 0x22, 0x50, 0x4F,
michael@0: 0x52, 0x54, 0x22, 0x3E, 0x3C, 0x70, 0x61, 0x72,
michael@0: 0x6D, 0x20, 0x6E, 0x61, 0x6D, 0x65, 0x3D, 0x22,
michael@0: 0x50, 0x4F, 0x52, 0x54, 0x4E, 0x42, 0x52, 0x22,
michael@0: 0x20, 0x76, 0x61, 0x6C, 0x75, 0x65, 0x3D, 0x22,
michael@0: 0x39, 0x32, 0x30, 0x33, 0x22, 0x2F, 0x3E, 0x3C,
michael@0: 0x2F, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74,
michael@0: 0x65, 0x72, 0x69, 0x73, 0x74, 0x69, 0x63, 0x3E,
michael@0: 0x3C, 0x2F, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63,
michael@0: 0x74, 0x65, 0x72, 0x69, 0x73, 0x74, 0x69, 0x63,
michael@0: 0x3E, 0x3C, 0x2F, 0x63, 0x68, 0x61, 0x72, 0x61,
michael@0: 0x63, 0x74, 0x65, 0x72, 0x69, 0x73, 0x74, 0x69,
michael@0: 0x63, 0x3E, 0x3C, 0x63, 0x68, 0x61, 0x72, 0x61,
michael@0: 0x63, 0x74, 0x65, 0x72, 0x69, 0x73, 0x74, 0x69,
michael@0: 0x63, 0x20, 0x74, 0x79, 0x70, 0x65, 0x3D, 0x22,
michael@0: 0x4E, 0x41, 0x50, 0x44, 0x45, 0x46, 0x22, 0x3E,
michael@0: 0x3C, 0x70, 0x61, 0x72, 0x6D, 0x20, 0x6E, 0x61,
michael@0: 0x6D, 0x65, 0x3D, 0x22, 0x4E, 0x41, 0x50, 0x49,
michael@0: 0x44, 0x22, 0x20, 0x76, 0x61, 0x6C, 0x75, 0x65,
michael@0: 0x3D, 0x22, 0x4E, 0x41, 0x50, 0x31, 0x22, 0x2F,
michael@0: 0x3E, 0x3C, 0x70, 0x61, 0x72, 0x6D, 0x20, 0x6E,
michael@0: 0x61, 0x6D, 0x65, 0x3D, 0x22, 0x42, 0x45, 0x41,
michael@0: 0x52, 0x45, 0x52, 0x22, 0x20, 0x76, 0x61, 0x6C,
michael@0: 0x75, 0x65, 0x3D, 0x22, 0x47, 0x53, 0x4D, 0x2D,
michael@0: 0x43, 0x53, 0x44, 0x22, 0x2F, 0x3E, 0x3C, 0x70,
michael@0: 0x61, 0x72, 0x6D, 0x20, 0x6E, 0x61, 0x6D, 0x65,
michael@0: 0x3D, 0x22, 0x4E, 0x41, 0x4D, 0x45, 0x22, 0x20,
michael@0: 0x76, 0x61, 0x6C, 0x75, 0x65, 0x3D, 0x22, 0x4D,
michael@0: 0x59, 0x20, 0x49, 0x53, 0x50, 0x20, 0x43, 0x53,
michael@0: 0x44, 0x22, 0x2F, 0x3E, 0x3C, 0x70, 0x61, 0x72,
michael@0: 0x6D, 0x20, 0x6E, 0x61, 0x6D, 0x65, 0x3D, 0x22,
michael@0: 0x4E, 0x41, 0x50, 0x2D, 0x41, 0x44, 0x44, 0x52,
michael@0: 0x45, 0x53, 0x53, 0x22, 0x20, 0x76, 0x61, 0x6C,
michael@0: 0x75, 0x65, 0x3D, 0x22, 0x2B, 0x33, 0x35, 0x38,
michael@0: 0x30, 0x38, 0x31, 0x32, 0x34, 0x30, 0x30, 0x32,
michael@0: 0x22, 0x2F, 0x3E, 0x3C, 0x70, 0x61, 0x72, 0x6D,
michael@0: 0x20, 0x6E, 0x61, 0x6D, 0x65, 0x3D, 0x22, 0x4E,
michael@0: 0x41, 0x50, 0x2D, 0x41, 0x44, 0x44, 0x52, 0x54,
michael@0: 0x59, 0x50, 0x45, 0x22, 0x20, 0x76, 0x61, 0x6C,
michael@0: 0x75, 0x65, 0x3D, 0x22, 0x45, 0x31, 0x36, 0x34,
michael@0: 0x22, 0x2F, 0x3E, 0x3C, 0x70, 0x61, 0x72, 0x6D,
michael@0: 0x20, 0x6E, 0x61, 0x6D, 0x65, 0x3D, 0x22, 0x44,
michael@0: 0x4E, 0x53, 0x2D, 0x41, 0x44, 0x44, 0x52, 0x22,
michael@0: 0x20, 0x76, 0x61, 0x6C, 0x75, 0x65, 0x3D, 0x22,
michael@0: 0x31, 0x37, 0x30, 0x2E, 0x31, 0x38, 0x37, 0x2E,
michael@0: 0x35, 0x31, 0x2E, 0x32, 0x22, 0x2F, 0x3E, 0x3C,
michael@0: 0x70, 0x61, 0x72, 0x6D, 0x20, 0x6E, 0x61, 0x6D,
michael@0: 0x65, 0x3D, 0x22, 0x43, 0x41, 0x4C, 0x4C, 0x54,
michael@0: 0x59, 0x50, 0x45, 0x22, 0x20, 0x76, 0x61, 0x6C,
michael@0: 0x75, 0x65, 0x3D, 0x22, 0x41, 0x4E, 0x41, 0x4C,
michael@0: 0x4F, 0x47, 0x2D, 0x4D, 0x4F, 0x44, 0x45, 0x4D,
michael@0: 0x22, 0x2F, 0x3E, 0x3C, 0x70, 0x61, 0x72, 0x6D,
michael@0: 0x20, 0x6E, 0x61, 0x6D, 0x65, 0x3D, 0x22, 0x4D,
michael@0: 0x41, 0x58, 0x2D, 0x4E, 0x55, 0x4D, 0x2D, 0x52,
michael@0: 0x45, 0x54, 0x52, 0x59, 0x22, 0x20, 0x76, 0x61,
michael@0: 0x6C, 0x75, 0x65, 0x3D, 0x22, 0x33, 0x22, 0x2F,
michael@0: 0x3E, 0x3C, 0x70, 0x61, 0x72, 0x6D, 0x20, 0x6E,
michael@0: 0x61, 0x6D, 0x65, 0x3D, 0x22, 0x46, 0x49, 0x52,
michael@0: 0x53, 0x54, 0x2D, 0x52, 0x45, 0x54, 0x52, 0x59,
michael@0: 0x2D, 0x54, 0x49, 0x4D, 0x45, 0x4F, 0x55, 0x54,
michael@0: 0x22, 0x20, 0x76, 0x61, 0x6C, 0x75, 0x65, 0x3D,
michael@0: 0x22, 0x36, 0x22, 0x2F, 0x3E, 0x3C, 0x70, 0x61,
michael@0: 0x72, 0x6D, 0x20, 0x6E, 0x61, 0x6D, 0x65, 0x3D,
michael@0: 0x22, 0x52, 0x45, 0x52, 0x45, 0x47, 0x2D, 0x54,
michael@0: 0x48, 0x52, 0x45, 0x53, 0x48, 0x4F, 0x4C, 0x44,
michael@0: 0x22, 0x20, 0x76, 0x61, 0x6C, 0x75, 0x65, 0x3D,
michael@0: 0x22, 0x33, 0x30, 0x22, 0x2F, 0x3E, 0x3C, 0x70,
michael@0: 0x61, 0x72, 0x6D, 0x20, 0x6E, 0x61, 0x6D, 0x65,
michael@0: 0x3D, 0x22, 0x54, 0x2D, 0x42, 0x49, 0x54, 0x22,
michael@0: 0x2F, 0x3E, 0x3C, 0x63, 0x68, 0x61, 0x72, 0x61,
michael@0: 0x63, 0x74, 0x65, 0x72, 0x69, 0x73, 0x74, 0x69,
michael@0: 0x63, 0x20, 0x74, 0x79, 0x70, 0x65, 0x3D, 0x22,
michael@0: 0x4E, 0x41, 0x50, 0x41, 0x55, 0x54, 0x48, 0x49,
michael@0: 0x4E, 0x46, 0x4F, 0x22, 0x3E, 0x3C, 0x70, 0x61,
michael@0: 0x72, 0x6D, 0x20, 0x6E, 0x61, 0x6D, 0x65, 0x3D,
michael@0: 0x22, 0x41, 0x55, 0x54, 0x48, 0x54, 0x59, 0x50,
michael@0: 0x45, 0x22, 0x20, 0x76, 0x61, 0x6C, 0x75, 0x65,
michael@0: 0x3D, 0x22, 0x50, 0x41, 0x50, 0x22, 0x2F, 0x3E,
michael@0: 0x3C, 0x70, 0x61, 0x72, 0x6D, 0x20, 0x6E, 0x61,
michael@0: 0x6D, 0x65, 0x3D, 0x22, 0x41, 0x55, 0x54, 0x48,
michael@0: 0x4E, 0x41, 0x4D, 0x45, 0x22, 0x20, 0x76, 0x61,
michael@0: 0x6C, 0x75, 0x65, 0x3D, 0x22, 0x77, 0x77, 0x77,
michael@0: 0x6D, 0x6D, 0x6D, 0x75, 0x73, 0x65, 0x72, 0x22,
michael@0: 0x2F, 0x3E, 0x3C, 0x70, 0x61, 0x72, 0x6D, 0x20,
michael@0: 0x6E, 0x61, 0x6D, 0x65, 0x3D, 0x22, 0x41, 0x55,
michael@0: 0x54, 0x48, 0x53, 0x45, 0x43, 0x52, 0x45, 0x54,
michael@0: 0x22, 0x20, 0x76, 0x61, 0x6C, 0x75, 0x65, 0x3D,
michael@0: 0x22, 0x77, 0x77, 0x77, 0x6D, 0x6D, 0x6D, 0x73,
michael@0: 0x65, 0x63, 0x72, 0x65, 0x74, 0x22, 0x2F, 0x3E,
michael@0: 0x3C, 0x70, 0x61, 0x72, 0x6D, 0x20, 0x6E, 0x61,
michael@0: 0x6D, 0x65, 0x3D, 0x22, 0x41, 0x55, 0x54, 0x48,
michael@0: 0x2D, 0x45, 0x4E, 0x54, 0x49, 0x54, 0x59, 0x22,
michael@0: 0x20, 0x76, 0x61, 0x6C, 0x75, 0x65, 0x3D, 0x22,
michael@0: 0x48, 0x41, 0x22, 0x2F, 0x3E, 0x3C, 0x70, 0x61,
michael@0: 0x72, 0x6D, 0x20, 0x6E, 0x61, 0x6D, 0x65, 0x3D,
michael@0: 0x22, 0x53, 0x50, 0x49, 0x22, 0x20, 0x76, 0x61,
michael@0: 0x6C, 0x75, 0x65, 0x3D, 0x22, 0x46, 0x45, 0x44,
michael@0: 0x43, 0x42, 0x41, 0x39, 0x38, 0x22, 0x2F, 0x3E,
michael@0: 0x3C, 0x2F, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63,
michael@0: 0x74, 0x65, 0x72, 0x69, 0x73, 0x74, 0x69, 0x63,
michael@0: 0x3E, 0x3C, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63,
michael@0: 0x74, 0x65, 0x72, 0x69, 0x73, 0x74, 0x69, 0x63,
michael@0: 0x20, 0x74, 0x79, 0x70, 0x65, 0x3D, 0x22, 0x56,
michael@0: 0x41, 0x4C, 0x49, 0x44, 0x49, 0x54, 0x59, 0x22,
michael@0: 0x3E, 0x3C, 0x70, 0x61, 0x72, 0x6D, 0x20, 0x6E,
michael@0: 0x61, 0x6D, 0x65, 0x3D, 0x22, 0x43, 0x4F, 0x55,
michael@0: 0x4E, 0x54, 0x52, 0x59, 0x22, 0x20, 0x76, 0x61,
michael@0: 0x6C, 0x75, 0x65, 0x3D, 0x22, 0x32, 0x32, 0x38,
michael@0: 0x22, 0x2F, 0x3E, 0x3C, 0x70, 0x61, 0x72, 0x6D,
michael@0: 0x20, 0x6E, 0x61, 0x6D, 0x65, 0x3D, 0x22, 0x4E,
michael@0: 0x45, 0x54, 0x57, 0x4F, 0x52, 0x4B, 0x22, 0x20,
michael@0: 0x76, 0x61, 0x6C, 0x75, 0x65, 0x3D, 0x22, 0x30,
michael@0: 0x30, 0x31, 0x22, 0x2F, 0x3E, 0x3C, 0x2F, 0x63,
michael@0: 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72,
michael@0: 0x69, 0x73, 0x74, 0x69, 0x63, 0x3E, 0x3C, 0x2F,
michael@0: 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65,
michael@0: 0x72, 0x69, 0x73, 0x74, 0x69, 0x63, 0x3E, 0x3C,
michael@0: 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65,
michael@0: 0x72, 0x69, 0x73, 0x74, 0x69, 0x63, 0x20, 0x74,
michael@0: 0x79, 0x70, 0x65, 0x3D, 0x22, 0x41, 0x43, 0x43,
michael@0: 0x45, 0x53, 0x53, 0x22, 0x3E, 0x3C, 0x2F, 0x63,
michael@0: 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72,
michael@0: 0x69, 0x73, 0x74, 0x69, 0x63, 0x3E, 0x3C, 0x2F,
michael@0: 0x77, 0x61, 0x70, 0x2D, 0x70, 0x72, 0x6F, 0x76,
michael@0: 0x69, 0x73, 0x69, 0x6F, 0x6E, 0x69, 0x6E, 0x67,
michael@0: 0x64, 0x6F, 0x63, 0x3E
michael@0: ]);
michael@0:
michael@0: /*
michael@0: * Test data from OMA-TS-WAP_ProvCont-V1_1-20090421-C.pdf, Appendix C
michael@0: */
michael@0: let wbxml_data_array = new Uint8Array([
michael@0: // WBXML version 1.3
michael@0: 0x03,
michael@0: // The Public Identifier for "-//WAPFORUM//DTD PROV 1.0//EN"
michael@0: 0x0b,
michael@0: // Character set UTF-8
michael@0: 0x6a,
michael@0: // String table length = 05
michael@0: 0x05,
michael@0: // String table: 'N', 'A', 'P', '1', 00
michael@0: 0x4e, 0x41, 0x50, 0x31, 0x00,
michael@0: //
michael@0: 0xc5, 0x46, 0x01,
michael@0: //
michael@0: 0xc6, 0x51, 0x01,
michael@0: //
michael@0: 0x87, 0x15, 0x06, 0x03, 0x31, 0x37, 0x30, 0x2e,
michael@0: 0x31, 0x38, 0x37, 0x2e, 0x35, 0x31, 0x2e, 0x34,
michael@0: 0x00, 0x01,
michael@0: //
michael@0: 0x87, 0x3E, 0x06, 0x03, 0x70, 0x72, 0x6f, 0x78,
michael@0: 0x79, 0x70, 0x61, 0x73, 0x73, 0x77, 0x64, 0x00,
michael@0: 0x01,
michael@0: //
michael@0: 0x87, 0x3F, 0x06, 0x9C, 0x01,
michael@0: //
michael@0: 0x87, 0x07, 0x06, 0x03, 0x42, 0x61, 0x6e, 0x6b,
michael@0: 0x4d, 0x61, 0x69, 0x6e, 0x50, 0x72, 0x6f, 0x78,
michael@0: 0x79, 0x00, 0x01,
michael@0: //
michael@0: 0x87, 0x1c, 0x06, 0x03, 0x68, 0x74, 0x74, 0x70,
michael@0: 0x3a, 0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x62,
michael@0: 0x61, 0x6e, 0x6b, 0x2e, 0x63, 0x6f, 0x6d, 0x2f,
michael@0: 0x73, 0x74, 0x61, 0x72, 0x74, 0x70, 0x61, 0x67,
michael@0: 0x65, 0x2e, 0x77, 0x6d, 0x6c, 0x00, 0x01,
michael@0: //
michael@0: 0x87, 0x47, 0x06, 0x03, 0x31, 0x00, 0x01,
michael@0: //
michael@0: 0xc6, 0x59, 0x01,
michael@0: //
michael@0: 0x87, 0x19, 0x06, 0x9c, 0x01,
michael@0: //
michael@0: 0x87, 0x1a, 0x06, 0x03, 0x70, 0x78, 0x75, 0x73,
michael@0: 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x01,
michael@0: //
michael@0: 0x87, 0x1b, 0x06, 0x03, 0x70, 0x78, 0x75, 0x73,
michael@0: 0x65, 0x72, 0x70, 0x61, 0x73, 0x73, 0x77, 0x64,
michael@0: 0x00, 0x01,
michael@0: //
michael@0: 0x01,
michael@0: //
michael@0: 0xc6, 0x52, 0x01,
michael@0: //
michael@0: 0x87, 0x2f, 0x06, 0x03, 0x50, 0x52, 0x4f, 0x58,
michael@0: 0x59, 0x20, 0x31, 0x00, 0x01,
michael@0: //
michael@0: 0x87, 0x17, 0x06, 0x03, 0x77, 0x77, 0x77, 0x2e,
michael@0: 0x62, 0x61, 0x6e, 0x6b, 0x2e, 0x63, 0x6f, 0x6d,
michael@0: 0x2f, 0x00, 0x01,
michael@0: //
michael@0: 0x87, 0x20, 0x06, 0x03, 0x31, 0x37, 0x30, 0x2e,
michael@0: 0x31, 0x38, 0x37, 0x2e, 0x35, 0x31, 0x2e, 0x33,
michael@0: 0x00, 0x01,
michael@0: //
michael@0: 0x87, 0x21, 0x06, 0x85, 0x01,
michael@0: //
michael@0: 0x87, 0x3D, 0x06, 0x03, 0x70, 0x72, 0x6f, 0x78,
michael@0: 0x79, 0x31, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61,
michael@0: 0x74, 0x6f, 0x72, 0x2e, 0x63, 0x6f, 0x6d, 0x00,
michael@0: 0x01,
michael@0: //
michael@0: 0x87, 0x22, 0x06, 0x03, 0x49, 0x4e, 0x54, 0x45,
michael@0: 0x52, 0x4e, 0x45, 0x54, 0x00, 0x01,
michael@0: //
michael@0: 0x87, 0x22, 0x06, 0x83, 0x00, 0x01,
michael@0: //
michael@0: 0xc6, 0x53, 0x01,
michael@0: //
michael@0: 0x87, 0x23, 0x06, 0x03, 0x39, 0x32, 0x30, 0x33,
michael@0: 0x00, 0x01,
michael@0: //
michael@0: 0x01,
michael@0: //
michael@0: 0x01,
michael@0: //
michael@0: 0x01,
michael@0: //
michael@0: 0xc6, 0x55, 0x01,
michael@0: //
michael@0: 0x87, 0x11, 0x06, 0x83, 0x00, 0x01,
michael@0: //
michael@0: 0x87, 0x10, 0x06, 0xaa, 0x01,
michael@0: //
michael@0: 0x87, 0x07, 0x06, 0x03, 0x4d, 0x59, 0x20, 0x49,
michael@0: 0x53, 0x50, 0x20, 0x43, 0x53, 0x44, 0x00, 0x01,
michael@0: //
michael@0: 0x87, 0x08, 0x06, 0x03, 0x2b, 0x33, 0x35, 0x38,
michael@0: 0x30, 0x38, 0x31, 0x32, 0x34, 0x30, 0x30, 0x32,
michael@0: 0x00, 0x01,
michael@0: //
michael@0: 0x87, 0x09, 0x06, 0x87, 0x01,
michael@0: //
michael@0: 0x87, 0x48, 0x06, 0x03, 0x31, 0x37, 0x30, 0x2e,
michael@0: 0x31, 0x38, 0x37, 0x2e, 0x35, 0x31, 0x2e, 0x32,
michael@0: 0x00, 0x01,
michael@0: //
michael@0: 0x87, 0x0a, 0x06, 0x90, 0x01,
michael@0: //
michael@0: 0x87, 0x49, 0x06, 0x03, 0x33, 0x00, 0x01,
michael@0: //
michael@0: 0x87, 0x4A, 0x06, 0x03, 0x36, 0x00, 0x01,
michael@0: //
michael@0: 0x87, 0x4B, 0x06, 0x03, 0x33, 0x30, 0x00, 0x01,
michael@0: //
michael@0: 0x87, 0x4C, 0x01,
michael@0: //
michael@0: 0xc6, 0x5a, 0x01,
michael@0: //
michael@0: 0x87, 0x0c, 0x06, 0x9a, 0x01,
michael@0: //
michael@0: 0x87, 0x0d, 0x06, 0x03, 0x77, 0x77, 0x77, 0x6d,
michael@0: 0x6d, 0x6d, 0x75, 0x73, 0x65, 0x72, 0x00, 0x01,
michael@0: //
michael@0: 0x87, 0x0e, 0x06, 0x03, 0x77, 0x77, 0x77, 0x6d,
michael@0: 0x6d, 0x6d, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74,
michael@0: 0x00, 0x01,
michael@0: //
michael@0: 0x87, 0x4E, 0x06, 0xE1, 0x01,
michael@0: //
michael@0: 0x87, 0x4F, 0x06, 0x03, 0x46, 0x45, 0x44, 0x43,
michael@0: 0x42, 0x41, 0x39, 0x38, 0x00, 0x01,
michael@0: //
michael@0: 0x01,
michael@0: //
michael@0: 0xc6, 0x54, 0x01,
michael@0: //
michael@0: 0x87, 0x12, 0x06, 0x03, 0x32, 0x32, 0x38, 0x00,
michael@0: 0x01,
michael@0: //
michael@0: 0x87, 0x13, 0x06, 0x03, 0x30, 0x30, 0x31, 0x00,
michael@0: 0x01,
michael@0: //
michael@0: 0x01,
michael@0: //
michael@0: 0x01,
michael@0: //
michael@0: 0xC6, 0x5B, 0x01,
michael@0: //
michael@0: 0x01,
michael@0: //
michael@0: 0x01
michael@0: ]);
michael@0:
michael@0: /*
michael@0: * Test data from CHT CP, with code page change
michael@0: */
michael@0: let wbxml_code_page_data_array = new Uint8Array([
michael@0: 0x03, 0x0B, 0x6A, 0x00, 0x45, 0xC6, 0x56, 0x01,
michael@0: 0x87, 0x07, 0x06, 0x03, 0x43, 0x48, 0x54, 0x5F,
michael@0: 0x65, 0x6D, 0x6F, 0x6D, 0x65, 0x00, 0x01, 0x01,
michael@0: 0xC6, 0x00, 0x01, 0x55, 0x01, 0x87, 0x36, 0x00,
michael@0: 0x00, 0x06, 0x03, 0x77, 0x32, 0x00, 0x01, 0x87,
michael@0: 0x00, 0x01, 0x39, 0x00, 0x00, 0x06, 0x03, 0x57,
michael@0: 0x50, 0x52, 0x4F, 0x58, 0x59, 0x00, 0x01, 0x87,
michael@0: 0x07, 0x06, 0x03, 0x43, 0x48, 0x54, 0x5F, 0x65,
michael@0: 0x6D, 0x6F, 0x6D, 0x65, 0x00, 0x01, 0xC6, 0x00,
michael@0: 0x01, 0x59, 0x01, 0x87, 0x3A, 0x00, 0x00, 0x06,
michael@0: 0x03, 0x68, 0x74, 0x74, 0x70, 0x3A, 0x2F, 0x2F,
michael@0: 0x77, 0x61, 0x70, 0x2E, 0x65, 0x6D, 0x6F, 0x6D,
michael@0: 0x65, 0x2E, 0x6E, 0x65, 0x74, 0x2F, 0x00, 0x01,
michael@0: 0x87, 0x07, 0x06, 0x03, 0x43, 0x48, 0x54, 0x5F,
michael@0: 0x65, 0x6D, 0x6F, 0x6D, 0x65, 0x00, 0x01, 0x87,
michael@0: 0x1C, 0x01, 0x01, 0x01, 0xC6, 0x00, 0x01, 0x55,
michael@0: 0x01, 0x87, 0x36, 0x00, 0x00, 0x06, 0x03, 0x77,
michael@0: 0x34, 0x00, 0x01, 0x87, 0x00, 0x01, 0x39, 0x00,
michael@0: 0x00, 0x06, 0x03, 0x4D, 0x50, 0x52, 0x4F, 0x58,
michael@0: 0x59, 0x00, 0x01, 0x87, 0x00, 0x01, 0x34, 0x00,
michael@0: 0x00, 0x06, 0x03, 0x68, 0x74, 0x74, 0x70, 0x3A,
michael@0: 0x2F, 0x2F, 0x6D, 0x6D, 0x73, 0x3A, 0x38, 0x30,
michael@0: 0x30, 0x32, 0x00, 0x01, 0x01, 0xC6, 0x51, 0x01,
michael@0: 0x87, 0x15, 0x06, 0x03, 0x57, 0x50, 0x52, 0x4F,
michael@0: 0x58, 0x59, 0x00, 0x01, 0x87, 0x07, 0x06, 0x03,
michael@0: 0x43, 0x48, 0x54, 0x5F, 0x65, 0x6D, 0x6F, 0x6D,
michael@0: 0x65, 0x00, 0x01, 0x87, 0x1C, 0x06, 0x03, 0x68,
michael@0: 0x74, 0x74, 0x70, 0x3A, 0x2F, 0x2F, 0x77, 0x61,
michael@0: 0x70, 0x2E, 0x65, 0x6D, 0x6F, 0x6D, 0x65, 0x2E,
michael@0: 0x6E, 0x65, 0x74, 0x2F, 0x00, 0x01, 0xC6, 0x52,
michael@0: 0x01, 0x87, 0x2F, 0x06, 0x03, 0x50, 0x52, 0x4F,
michael@0: 0x58, 0x59, 0x31, 0x00, 0x01, 0x87, 0x20, 0x06,
michael@0: 0x03, 0x31, 0x30, 0x2E, 0x31, 0x2E, 0x31, 0x2E,
michael@0: 0x31, 0x00, 0x01, 0x87, 0x21, 0x06, 0x85, 0x01,
michael@0: 0x87, 0x22, 0x06, 0x03, 0x43, 0x48, 0x54, 0x5F,
michael@0: 0x65, 0x6D, 0x6F, 0x6D, 0x65, 0x00, 0x01, 0xC6,
michael@0: 0x53, 0x01, 0x87, 0x23, 0x06, 0x03, 0x38, 0x30,
michael@0: 0x38, 0x30, 0x00, 0x01, 0x01, 0x01, 0x01, 0xC6,
michael@0: 0x51, 0x01, 0x87, 0x15, 0x06, 0x03, 0x4D, 0x50,
michael@0: 0x52, 0x4F, 0x58, 0x59, 0x00, 0x01, 0x87, 0x07,
michael@0: 0x06, 0x03, 0x43, 0x48, 0x54, 0x5F, 0x4D, 0x4D,
michael@0: 0x53, 0x00, 0x01, 0xC6, 0x52, 0x01, 0x87, 0x2F,
michael@0: 0x06, 0x03, 0x50, 0x52, 0x4F, 0x58, 0x59, 0x32,
michael@0: 0x00, 0x01, 0x87, 0x20, 0x06, 0x03, 0x31, 0x30,
michael@0: 0x2E, 0x31, 0x2E, 0x31, 0x2E, 0x31, 0x00, 0x01,
michael@0: 0x87, 0x21, 0x06, 0x85, 0x01, 0x87, 0x22, 0x06,
michael@0: 0x03, 0x43, 0x48, 0x54, 0x5F, 0x4D, 0x4D, 0x53,
michael@0: 0x00, 0x01, 0xC6, 0x53, 0x01, 0x87, 0x23, 0x06,
michael@0: 0x03, 0x38, 0x30, 0x38, 0x30, 0x00, 0x01, 0x01,
michael@0: 0x01, 0x01, 0xC6, 0x55, 0x01, 0x87, 0x11, 0x06,
michael@0: 0x03, 0x43, 0x48, 0x54, 0x5F, 0x65, 0x6D, 0x6F,
michael@0: 0x6D, 0x65, 0x00, 0x01, 0x87, 0x07, 0x06, 0x03,
michael@0: 0x43, 0x48, 0x54, 0x5F, 0x65, 0x6D, 0x6F, 0x6D,
michael@0: 0x65, 0x00, 0x01, 0x87, 0x10, 0x06, 0xAB, 0x01,
michael@0: 0x87, 0x08, 0x06, 0x03, 0x65, 0x6D, 0x6F, 0x6D,
michael@0: 0x65, 0x00, 0x01, 0x87, 0x09, 0x06, 0x89, 0x01,
michael@0: 0x01, 0xC6, 0x55, 0x01, 0x87, 0x11, 0x06, 0x03,
michael@0: 0x43, 0x48, 0x54, 0x5F, 0x4D, 0x4D, 0x53, 0x00,
michael@0: 0x01, 0x87, 0x07, 0x06, 0x03, 0x43, 0x48, 0x54,
michael@0: 0x5F, 0x4D, 0x4D, 0x53, 0x00, 0x01, 0x87, 0x10,
michael@0: 0x06, 0xAB, 0x01, 0x87, 0x08, 0x06, 0x03, 0x65,
michael@0: 0x6D, 0x6F, 0x6D, 0x65, 0x00, 0x01, 0x87, 0x09,
michael@0: 0x06, 0x89, 0x01, 0x01, 0x01
michael@0: ]);
michael@0:
michael@0: /*
michael@0: * Test data from OMA-TS-WAP_ProvCont-V1_1-20090421-C.pdf, clause 6.1
michael@0: */
michael@0: let xml_header =
michael@0: "" +
michael@0: "";
michael@0:
michael@0: let xml_body =
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "";
michael@0:
michael@0: let wbxml_code_page_content =
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "" +
michael@0: "";
michael@0:
michael@0: /**
michael@0: * CP in plain text
michael@0: *
michael@0: * Test case from OMA-TS-WAP_ProvCont-V1_1-20090421-C.pdf, clause 6.1
michael@0: */
michael@0: add_test(function test_cp_parse_plain_text() {
michael@0: test_parser(text_data_array, "text/vnd.wap.connectivity-xml", {
michael@0: contentType: "text/vnd.wap.connectivity-xml",
michael@0: content: xml_header + xml_body
michael@0: });
michael@0:
michael@0: run_next_test();
michael@0: });
michael@0:
michael@0: /**
michael@0: * CP compressed by WBXML
michael@0: *
michael@0: * Test case from OMA-TS-WAP_ProvCont-V1_1-20090421-C.pdf, Appendix C
michael@0: */
michael@0: add_test(function test_cp_parse_wbxml() {
michael@0: test_parser(wbxml_data_array, "application/vnd.wap.connectivity-wbxml", {
michael@0: contentType: "text/vnd.wap.connectivity-xml",
michael@0: content: xml_body
michael@0: });
michael@0:
michael@0: run_next_test();
michael@0: });
michael@0:
michael@0: /**
michael@0: * CP compressed by WBXML with VENDORCONFIG
michael@0: */
michael@0: add_test(function test_cp_parse_wbxml() {
michael@0: let wbxml_vendor_config_data_array = new Uint8Array([
michael@0: 0x03, 0x0b, 0x6a, 0x05, 0x4e, 0x41, 0x50, 0x31,
michael@0: 0x00, 0xC5, 0x46, 0x01, 0xc6, 0x57, 0x01, 0x01
michael@0: ]);
michael@0:
michael@0: test_parser(wbxml_vendor_config_data_array, "application/vnd.wap.connectivity-wbxml", {
michael@0: contentType: "application/vnd.wap.connectivity-wbxml",
michael@0: content: wbxml_vendor_config_data_array
michael@0: });
michael@0:
michael@0: run_next_test();
michael@0: });
michael@0:
michael@0: /**
michael@0: * CP compressed by WBXML with code page switch
michael@0: */
michael@0: add_test(function test_cp_parse_wbxml_code_page() {
michael@0: test_parser(wbxml_code_page_data_array, "application/vnd.wap.connectivity-wbxml", {
michael@0: contentType: "text/vnd.wap.connectivity-xml",
michael@0: content: wbxml_code_page_content
michael@0: });
michael@0:
michael@0: run_next_test();
michael@0: });
michael@0:
michael@0: /**
michael@0: * HMAC test
michael@0: */
michael@0: add_test(function test_cp_hmac_userpin() {
michael@0: test_hmac(wbxml_code_page_data_array,
michael@0: "AA2DC41FC48AEEF3FED7351B1EE704461A8894D4",
michael@0: "0000",
michael@0: {
michael@0: checked: true,
michael@0: pass: true
michael@0: });
michael@0:
michael@0: run_next_test();
michael@0: });
michael@0:
michael@0: add_test(function test_cp_hmac_networkpin() {
michael@0: let wbxml_empty_data_array = new Uint8Array([
michael@0: 0x03, 0x0b, 0x6a, 0x00, 0x45, 0x01
michael@0: ]);
michael@0:
michael@0: test_hmac(wbxml_empty_data_array,
michael@0: "1AF545FE2823DC9347064450F90FF1BBF957E146",
michael@0: CP.Authenticator.formatImsi("466923103145252"),
michael@0: {
michael@0: checked: true,
michael@0: pass: true
michael@0: });
michael@0:
michael@0: run_next_test();
michael@0: });