1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
|
# encoding: UTF-8
# KLayout Layout Viewer
# Copyright (C) 2006-2025 Matthias Koefferlein
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
if !$:.member?(File::dirname($0))
$:.push(File::dirname($0))
end
load("test_prologue.rb")
class LAYPixelBuffer_TestClass < TestBase
def compare(pb1, pb2)
if pb1.width != pb2.width || pb1.height != pb2.height
return false
end
pb1.width.times do |x|
pb1.height.times do |y|
if pb1.pixel(x, y) != pb2.pixel(x, y)
return false
end
end
end
return true
end
def test_1
pb_null = RBA::PixelBuffer::new
assert_equal(pb_null.width, 0)
assert_equal(pb_null.height, 0)
pb = RBA::PixelBuffer::new(10, 20)
assert_equal(compare(pb_null, pb), false)
assert_equal(pb_null == pb, false)
assert_equal(pb.width, 10)
assert_equal(pb.height, 20)
assert_equal(pb.transparent, false)
pb_copy = pb.dup
pb.transparent = true
assert_equal(pb.transparent, true)
assert_equal(pb_copy == pb, false)
pb.fill(0xf0010203)
assert_equal(pb.pixel(0, 0), 0xf0010203)
assert_equal(pb.pixel(1, 2), 0xf0010203)
pb.set_pixel(1, 2, 0xff102030)
assert_equal(pb.pixel(0, 0), 0xf0010203)
assert_equal(pb.pixel(1, 2), 0xff102030)
pb.transparent = false
assert_equal(pb.transparent, false)
pb_copy = pb.dup
assert_equal(compare(pb_copy, pb), true)
assert_equal(pb_copy == pb, true)
pb.set_pixel(1, 2, 0x112233)
assert_equal(pb.pixel(0, 0), 0xf0010203)
assert_equal(pb.pixel(1, 2), 0xff112233)
assert_equal(pb_copy.pixel(1, 2), 0xff102030)
assert_equal(compare(pb_copy, pb), false)
assert_equal(pb_copy == pb, false)
pb_copy.swap(pb)
assert_equal(pb_copy.pixel(1, 2), 0xff112233)
assert_equal(pb.pixel(1, 2), 0xff102030)
end
def test_2
pb = RBA::PixelBuffer::new(10, 20)
pb.fill(0xf0010203)
pb1 = pb.dup
pb.set_pixel(1, 2, 0x112233)
assert_equal(compare(pb1, pb), false)
assert_equal(pb1 == pb, false)
diff = pb1.diff(pb)
pb1.patch(diff)
assert_equal(compare(pb1, pb), true)
assert_equal(pb1 == pb, true)
end
def test_3
pb = RBA::PixelBuffer::new(10, 20)
pb.fill(0xf0010203)
pb1 = pb.dup
pb.set_pixel(1, 2, 0x112233)
pb1 = pb.dup
pb.set_pixel(1, 2, 0xf0112233)
assert_equal(compare(pb1, pb), true)
assert_equal(pb1 == pb, true) # not transparent -> alpha is ignored
pb1.transparent = true
pb.transparent = true
assert_equal(compare(pb1, pb), true)
assert_equal(pb1 == pb, true)
pb.set_pixel(1, 2, 0xf0112233)
assert_equal(compare(pb1, pb), false)
assert_equal(pb1 == pb, false) # now, alpha matters
end
def test_4
pb = RBA::PixelBuffer::new(10, 20)
pb.transparent = true
pb.fill(0xf0010203)
if pb.respond_to?(:to_qimage)
assert_equal(pb.to_qimage.pixel(2, 3), 0xf0010203)
pb_copy = RBA::PixelBuffer::from_qimage(pb.to_qimage)
assert_equal(compare(pb, pb_copy), true)
end
png = pb.to_png_data
assert_equal(png.size > 20 && png.size < 200, true) # some range because implementations may differ
pb_copy = RBA::PixelBuffer.from_png_data(png)
assert_equal(compare(pb, pb_copy), true)
tmp = File::join($ut_testtmp, "tmp.png")
pb.write_png(tmp)
pb_copy = RBA::PixelBuffer.read_png(tmp)
assert_equal(compare(pb, pb_copy), true)
end
def test_11
pb = RBA::BitmapBuffer::new
assert_equal(pb.width, 0)
assert_equal(pb.height, 0)
pb = RBA::BitmapBuffer::new(10, 20)
assert_equal(pb.width, 10)
assert_equal(pb.height, 20)
pb.fill(false)
assert_equal(pb.pixel(0, 0), false)
assert_equal(pb.pixel(1, 2), false)
pb.set_pixel(1, 2, true)
assert_equal(pb.pixel(0, 0), false)
assert_equal(pb.pixel(1, 2), true)
pb_copy = pb.dup
assert_equal(compare(pb_copy, pb), true)
pb.set_pixel(1, 3, true)
assert_equal(pb.pixel(0, 0), false)
assert_equal(pb.pixel(1, 2), true)
assert_equal(pb.pixel(1, 3), true)
assert_equal(pb_copy.pixel(1, 3), false)
assert_equal(compare(pb_copy, pb), false)
pb_copy.swap(pb)
assert_equal(pb.pixel(1, 3), false)
assert_equal(pb_copy.pixel(1, 3), true)
end
def test_12
pb = RBA::BitmapBuffer::new(10, 20)
pb.fill(false)
pb.set_pixel(2, 3, true)
if pb.respond_to?(:to_qimage)
assert_equal(pb.to_qimage.pixel(0, 0), 0xff000000)
assert_equal(pb.to_qimage.pixel(2, 3), 0xffffffff)
pb_copy = RBA::BitmapBuffer::from_qimage(pb.to_qimage)
assert_equal(compare(pb, pb_copy), true)
end
png = nil
begin
png = pb.to_png_data
rescue => ex
# No PNG support
end
if png
assert_equal(png.size > 20 && png.size < 200, true) # some range because implementations may differ
pb_copy = RBA::BitmapBuffer.from_png_data(png)
assert_equal(compare(pb, pb_copy), true)
tmp = File::join($ut_testtmp, "tmp.png")
pb.write_png(tmp)
pb_copy = RBA::BitmapBuffer.read_png(tmp)
assert_equal(compare(pb, pb_copy), true)
end
end
end
load("test_epilogue.rb")
|