Jump to content

Module:IPAddress/testcases: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Undid revision 1012857214 by MarioGom (talk)
Tests for isIpV4Range and isIpV6Range
Line 35: Line 35:
{'0::0', '6'}, -- another name for unassigned IPv6 address
{'0::0', '6'}, -- another name for unassigned IPv6 address
{'2:::3', ''}, -- illegal: three colons
{'2:::3', ''}, -- illegal: three colons
})
end

function p:test_isIpV4Range()
self:preprocess_equals_many('{{#invoke:IPAddress|isIpV4Range|', '}}', {
{'200.200.200.200', '0'},
{'200.200.200.200/28', '1'},
{'00.00.00.00', '0'},
{'00.00.00.00/28', '1'},
{'00AB:0002:3008:8CFD:00AB:0002:3008:8CFD', '0'},
{'00AB:0002:3008:8CFD:00AB:0002:3008:8CFD/64', '0'},
{'0::0/64', '0'},
{'0::0', '0'},
})
end

function p:test_isIpV6Range()
self:preprocess_equals_many('{{#invoke:IPAddress|isIpV6Range|', '}}', {
{'200.200.200.200', '0'},
{'200.200.200.200/28', '0'},
{'00.00.00.00', '0'},
{'00.00.00.00/28', '0'},
{'00AB:0002:3008:8CFD:00AB:0002:3008:8CFD', '0'},
{'00AB:0002:3008:8CFD:00AB:0002:3008:8CFD/64', '1'},
{'0::0/64', '1'},
{'0::0', '0'},
})
})
end
end

Revision as of 17:57, 10 January 2023

-- Unit tests for [[Module:IPAddress]]. Click talk page to run tests.
local p = require('Module:UnitTests')

function p:test_isIp()
    self:preprocess_equals_many('{{#invoke:IPAddress|isIp|', '}}', {
        {'200.200.200.200', '4'},
        {' 200.200.200.200', ''}, -- whitespace not currently allowed
        {'200.200.200.200 ', ''}, -- whitespace not currently allowed
        {'200.200.256.200', ''},
        {'200.200.200.200.', ''},
        {'200.200.200', ''},
        {'200.200.200.2d0', ''},
        {'0.0.0.0', '4'},
        {'00.00.00.00', ''}, -- according to talkpage, leading zeroes unacceptable.
        {'100.100.020.100', ''}, -- according to talkpage, leading zeroes unacceptable.
        {'255.255.255.255', '4'},
        {'-1.0.0.0', ''},
        {'200000000000000000000000000000000000000000000000000000000000000000000000000000.200.200.200', ''},
        {'00000000000005.10.10.10', ''},
        {'00AB:0002:3008:8CFD:00AB:0002:3008:8CFD', '6'}, -- full length
        {'00ab:0002:3008:8cfd:00ab:0002:3008:8cfd', '6'}, -- lowercase
        {'00aB:0002:3008:8cFd:00Ab:0002:3008:8cfD', '6'}, -- mixed case
        {'00AB:00002:3008:8CFD:00AB:0002:3008:8CFD', ''}, -- at most 4 digits per segment
        {':0002:3008:8CFD:00AB:0002:3008:8CFD', ''}, -- can't remove all 0s from first segment unless using ::
        {'00AB:0002:3008:8CFD:00AB:0002:3008:', ''}, -- can't remove all 0s from last segment unless using ::
        {'AB:02:3008:8CFD:AB:02:3008:8CFD', '6'}, -- abbreviated
        {'AB:02:3008:8CFD:AB:02:3008:8CFD:02', ''}, -- too long
        {'AB:02:3008:8CFD::02:3008:8CFD', '6'}, -- correct use of ::
        {'AB:02:3008:8CFD::02:3008:8CFD:02', ''}, -- too long
        {'AB:02:3008:8CFD::02::8CFD', ''}, -- can't have two ::s
        {'GB:02:3008:8CFD:AB:02:3008:8CFD', ''}, -- Invalid character G
        {'::', '6'}, -- unassigned IPv6 address
        {'::1', '6'}, -- loopback IPv6 address
        {'0::', '6'}, -- another name for unassigned IPv6 address
        {'0::0', '6'}, -- another name for unassigned IPv6 address
        {'2:::3', ''}, -- illegal: three colons
    })
end

function p:test_isIpV4Range()
    self:preprocess_equals_many('{{#invoke:IPAddress|isIpV4Range|', '}}', {
        {'200.200.200.200', '0'},
        {'200.200.200.200/28', '1'},
        {'00.00.00.00', '0'},
        {'00.00.00.00/28', '1'},
        {'00AB:0002:3008:8CFD:00AB:0002:3008:8CFD', '0'},
        {'00AB:0002:3008:8CFD:00AB:0002:3008:8CFD/64', '0'},
        {'0::0/64', '0'}, 
        {'0::0', '0'}, 
    })
end

function p:test_isIpV6Range()
    self:preprocess_equals_many('{{#invoke:IPAddress|isIpV6Range|', '}}', {
        {'200.200.200.200', '0'},
        {'200.200.200.200/28', '0'},
        {'00.00.00.00', '0'},
        {'00.00.00.00/28', '0'},
        {'00AB:0002:3008:8CFD:00AB:0002:3008:8CFD', '0'},
        {'00AB:0002:3008:8CFD:00AB:0002:3008:8CFD/64', '1'},
        {'0::0/64', '1'}, 
        {'0::0', '0'}, 
    })
end

return p