1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- /**
- * Created by elgs on 3/5/16.
- */
- ;(function () {
- 'use strict';
-
- var ip6 = require('./ip6.js');
-
- ////////////////////////////////////////////////////////////////////////////
- // Public tests
-
- describe('To normalize IPv6 addresses', function () {
- it('should normalize IPv6 addresses', function () {
- expect(ip6.normalize('2404:6800:4003:808::200e')).toBe('2404:6800:4003:0808:0000:0000:0000:200e');
- expect(ip6.normalize('2404:6800:4003:0808:0000:0000:0000:200e')).toBe('2404:6800:4003:0808:0000:0000:0000:200e');
- expect(ip6.normalize('2404:6800:4003:808::')).toBe('2404:6800:4003:0808:0000:0000:0000:0000');
- expect(ip6.normalize('2404:68::')).toBe('2404:0068:0000:0000:0000:0000:0000:0000');
- expect(ip6.normalize('2404:6800:4003:0808:0:0:0:200e')).toBe('2404:6800:4003:0808:0000:0000:0000:200e');
- expect(ip6.normalize('::1')).toBe('0000:0000:0000:0000:0000:0000:0000:0001');
- expect(ip6.normalize('::')).toBe('0000:0000:0000:0000:0000:0000:0000:0000');
- expect(ip6.normalize('2607:5300:60:465c:0000:0000:0000::')).toBe('2607:5300:0060:465c:0000:0000:0000:0000');
- });
- });
-
- describe('To abbreviate IPv6 addresses.', function () {
- it('should abbreviate IPv6 addresses', function () {
- expect(ip6.abbreviate('2001:0000:0111:0000:0011:0000:0001:0000')).toBe('2001:0:111:0:11:0:1:0');
- expect(ip6.abbreviate('2001:0001:0000:0001:0000:0000:0000:0001')).toBe('2001:1:0:1::1');
- expect(ip6.abbreviate('2001:0001:0000:0001:0000:0000:0000:0000')).toBe('2001:1:0:1::');
- expect(ip6.abbreviate('0000:0000:0000:0000:0000:0000:0000:0000')).toBe('::');
- expect(ip6.abbreviate('0000:0000:0000:0000:0000:0000:0000:0001')).toBe('::1');
- expect(ip6.abbreviate('2041:0000:140F:0000:0000:0000:875B:131B')).toBe('2041:0:140F::875B:131B');
- expect(ip6.abbreviate('2001:0001:0002:0003:0004:0005:0006:0007')).toBe('2001:1:2:3:4:5:6:7');
- expect(ip6.abbreviate('2001:0000:0000:0000:1111:0000:0000:0000')).toBe('2001::1111:0:0:0');
- expect(ip6.abbreviate('2001:db8:0:0:0:0:2:1')).toBe('2001:db8::2:1');
- });
- });
-
- ////////////////////////////////////////////////////////////////////////////
- // Private test
-
- describe('To validate IPv6 addresses.', function () {
- beforeEach(function () {
- });
- afterEach(function () {
- });
-
- it('should check whether IPv6 addresses are valid', function () {
- expect(ip6._validate('cafe:babe')).toBeTruthy();
- expect(ip6._validate('hello world')).toBeFalsy();
- });
- });
- })();
|