klayout/testdata/ruby/laySession.rb

110 lines
2.9 KiB
Ruby

# encoding: UTF-8
# KLayout Layout Viewer
# Copyright (C) 2006-2024 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 LAYSession_TestClass < TestBase
def lnode_str( space, l )
return space + l.current.source( true ) + "\n";
end
def lnodes_str( space, l )
res = ""
while ! l.at_end?
res += lnode_str( space, l )
if (l.current.has_children?)
l.down_first_child
res += lnodes_str( " #{space}", l )
l.up
end
l.next_sibling( 1 )
end
return res
end
def test_1
if !RBA.constants.member?(:Application)
return
end
app = RBA::Application.instance
mw = app.main_window
mw.close_all
reader_options = RBA::LoadLayoutOptions::new
reader_options.set_layer_map( RBA::LayerMap::new, true )
reader_options.text_enabled = true
reader_options.properties_enabled = true
mw.load_layout( ENV["TESTSRC"] + "/testdata/gds/t11.gds", reader_options, 1 )
reader_options.create_other_layers = false
reader_options.layer_map.map( RBA::LayerInfo::new(1, 0), 1 )
reader_options.layer_map.map( "2/0", 0 )
reader_options.layer_map.map( "3/0", 2 )
reader_options.layer_map.map( "3/1", 10 )
reader_options.text_enabled = false
reader_options.properties_enabled = true
mw.load_layout( ENV["TESTSRC"] + "/testdata/gds/t10.gds", reader_options, 1 )
mw.select_view(0)
cv = mw.current_view
cv.clear_layers
pos = cv.end_layers
l1 = cv.insert_layer( pos, RBA::LayerPropertiesNode::new )
new_p = RBA::LayerPropertiesNode::new
new_p.source = "1/0@1"
l11 = cv.insert_layer( pos.last_child, new_p )
mw.save_session(File::join($ut_testtmp, "tmp.lys"))
mw.close_all
assert_equal(0, mw.views);
mw.restore_session(File::join($ut_testtmp, "tmp.lys"))
assert_equal(2, mw.views);
cv = mw.current_view
assert_equal( cv.title, "t11.gds [TOPTOP]" )
assert_equal( lnodes_str( "", cv.begin_layers ), "*/*@*\n 1/0@1\n" )
mw.select_view(1)
cv = mw.current_view
assert_equal( cv.title, "t10.gds [RINGO]" )
assert_equal( lnodes_str( "", cv.begin_layers ), "1/0@1\n2/0@1\n3/0@1\n3/1@1\n" )
end
end
load("test_epilogue.rb")