Newer
Older
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
require 'fox16'
require 'test/unit'
require 'testcase'
require 'openssl'
class TC_FXJPGImage < Fox::TestCase
include Fox
def setup
super(self.class.name)
end
def test_save_with_thread
w, h = 4000, 3000
img_data = OpenSSL::Random.random_bytes(w) * h * 4
count = 0
th = Thread.new do
loop do
sleep 0.01
count += 1
end
end
img = FXJPGImage.new(app)
img.setPixels( img_data, 0, w, h )
jpeg_data = FXMemoryStream.open(FXStreamSave, nil) do |outfile|
img.savePixels(outfile)
outfile.takeBuffer
end
th.kill
assert_operator(count, :>=, 10)
assert_operator(jpeg_data.bytesize, :>=, 1000)
end
end