summaryrefslogtreecommitdiff
path: root/test/disabled/run/applet-prop.scala
blob: 9c29dfd97967727065179e8cce067ca58addee5b (plain) (blame)
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
import scala.tools.partest._
import java.util.PropertyPermission
import java.security.AccessControlException

class S extends javax.swing.JApplet {
  scala.collection.Traversable
}

object Test extends SecurityTest {
  val s = new S
  // lazy val TestKey = sys.SystemProperties.noTraceSupression.key
  // def hitPerm() = new Throwable with scala.util.control.ControlThrowable { }
  // 
  // var throwing = false
  // override def propertyCheck(p: PropertyPermission): Unit = {
  //   if (p.getName == TestKey) {
  //     println("I see " + p.getName)
  //     if (throwing)
  //       throwIt(p)
  //   }
  // }
  // 
  // hitPerm()
  // securityOn()
  // hitPerm()
  // 
  // throwing = true
  //
  // val caught = 
  //   try   { hitPerm() ; false }
  //   catch { case _: AccessControlException => true }
  // 
  // assert(caught, "Should have incurred exception.")
  // throwing = false
  // hitPerm()
  // 
  // val xs = new Traversable[Int] { def foreach[U](f: Int => U) = 1 to 3 foreach f }
  // xs foreach println
}