Test

Ruby code posted
created at 20 Mar 17:29

Edit | Back
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
require 'rubygems'
require 'terminator'

class Class
  def unsafe_methods(*methods)
    methods.each do |method|
      self.class_eval "def safe_and_#{method}; sandbox('#{method}'); end;"
    end
  end
end


class JustAClass

  def initialize()
  end

  unsafe_methods :slow, :normal

  def slow()
    result = ''
    Terminator.terminate 1 do
      sleep 2
      result =  "I'll never print"
    end
    result
  end

  def normal()
    result = ''
    Terminator.terminate 3 do
      sleep 2
      result = "I will print"
    end
    result
  end

  def method123()
    "well tested with local method calls which never really causes a problem"
  end

  def sandbox(statement)
    msg = `ruby -e "require 'test-terminator'; jac = JustAClass.new; puts jac.#{statement}"`
    msg
  end
end

if __FILE__ == $0 then

  jac = JustAClass.new

  #jac.slow()         # <-  1) this code would raise a terminator error 
                      #     and then terminate the script

  #puts jac.normal()  # <-  2) this code runs fine up until the  
                      #      the 3 seconds has expired at which point 
                      #      the script is terminated with the 
                      #      message 'Terminated'

  #puts jac.safe_and_slow()   # <- 3) executes method slow() and 
                              #       continues exectution

  puts jac.safe_and_normal()  # <- 4) executes method normal() and 
                              #       continues exectution

  puts jac.method123()        # <- a regular method which is relatively safe

  puts 'now sleeping for 3 seconds'
  sleep 3
  puts 'normal code execution can continue'
endrequire 'rubygems'
require 'terminator'

class Class
  def unsafe_methods(*methods)
    methods.each do |method|
      self.class_eval "def safe_and_#{method}; sandbox('#{method}'); end;"
    end
  end
end


class JustAClass

  def initialize()
  end

  unsafe_methods :slow, :normal

  def slow()
    result = ''
    Terminator.terminate 1 do
      sleep 2
      result =  "I'll never print"
    end
    result
  end

  def normal()
    result = ''
    Terminator.terminate 3 do
      sleep 2
      result = "I will print"
    end
    result
  end

  def method123()
    "well tested with local method calls which never really causes a problem"
  end

  def sandbox(statement)
    msg = `ruby -e "require 'test-terminator'; jac = JustAClass.new; puts jac.#{statement}"`
    msg
  end
end

if __FILE__ == $0 then

  jac = JustAClass.new

  #jac.slow()         # <-  1) this code would raise a terminator error 
                      #     and then terminate the script

  #puts jac.normal()  # <-  2) this code runs fine up until the  
                      #      the 3 seconds has expired at which point 
                      #      the script is terminated with the 
                      #      message 'Terminated'

  #puts jac.safe_and_slow()   # <- 3) executes method slow() and 
                              #       continues exectution

  puts jac.safe_and_normal()  # <- 4) executes method normal() and 
                              #       continues exectution

  puts jac.method123()        # <- a regular method which is relatively safe

  puts 'now sleeping for 3 seconds'
  sleep 3
  puts 'normal code execution can continue'
endrequire 'rubygems'
require 'terminator'

class Class
  def unsafe_methods(*methods)
    methods.each do |method|
      self.class_eval "def safe_and_#{method}; sandbox('#{method}'); end;"
    end
  end
end


class JustAClass

  def initialize()
  end

  unsafe_methods :slow, :normal

  def slow()
    result = ''
    Terminator.terminate 1 do
      sleep 2
      result =  "I'll never print"
    end
    result
  end

  def normal()
    result = ''
    Terminator.terminate 3 do
      sleep 2
      result = "I will print"
    end
    result
  end

  def method123()
    "well tested with local method calls which never really causes a problem"
  end

  def sandbox(statement)
    msg = `ruby -e "require 'test-terminator'; jac = JustAClass.new; puts jac.#{statement}"`
    msg
  end
end

if __FILE__ == $0 then

  jac = JustAClass.new

  #jac.slow()         # <-  1) this code would raise a terminator error 
                      #     and then terminate the script

  #puts jac.normal()  # <-  2) this code runs fine up until the  
                      #      the 3 seconds has expired at which point 
                      #      the script is terminated with the 
                      #      message 'Terminated'

  #puts jac.safe_and_slow()   # <- 3) executes method slow() and 
                              #       continues exectution

  puts jac.safe_and_normal()  # <- 4) executes method normal() and 
                              #       continues exectution

  puts jac.method123()        # <- a regular method which is relatively safe

  puts 'now sleeping for 3 seconds'
  sleep 3
  puts 'normal code execution can continue'
end
5.03 KB in 6 ms with coderay