aboutsummaryrefslogblamecommitdiffstats
path: root/test/inet_set.lua
blob: 4c673d5fbef69ddd5c19f9ad601a90a36d4e451c (plain) (tree)
1
2
3
4
5


                                   
 
                            









                                                          






















































                                    
local inet = require 'inet'
local inet_set = require 'inet.set'
local test = require 'test'

local function agg_set(a, b)
	inet_set.aggregate(a)
	assert(#a == #b, 'wrong set size')
	for i=1,#a do
		--print(a[i], b[i])
		assert(a[i] == b[i], 'unexpected network')
	end
end


return test.new(function()
	agg_set({
		inet('10.0.0.0/24'),
		inet('10.0.1.0/24'),
	}, {
		inet('10.0.0.0/23'),
	})

	agg_set({
		inet('10.0.1.0/24'),
		inet('10.0.2.0/24'),
	}, {
		inet('10.0.1.0/24'),
		inet('10.0.2.0/24'),
	})

	agg_set({
		inet('10.0.1.0/24'),
		inet('10.0.2.0/24'),
		inet('10.0.3.0/24'),
		inet('10.0.4.0/24'),
	}, {
		inet('10.0.1.0/24'),
		inet('10.0.2.0/23'),
		inet('10.0.4.0/24'),
	})

	agg_set({
		inet('10.0.2.1/24'),
		inet('10.0.4.0/24'),
		inet('10.0.1.0/24'),
		inet('10.0.3.0/24'),
	}, {
		inet('10.0.2.0/23'),
		inet('10.0.4.0/24'),
		inet('10.0.1.0/24'),
	})

	agg_set({
		inet('10.0.1.1/24'),
		inet('10.0.3.2/24'),
		inet('10.0.2.3/24'),
		inet('10.0.4.4/24'),
	}, {
		inet('10.0.1.0/24'),
		inet('10.0.2.0/23'),
		inet('10.0.4.0/24'),
	})

	agg_set({
		inet('::/32'),
		inet('0:1::/32'),
	}, {
		inet('::/31'),
	})
end)