Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TestCaseClassLoader.cs « NUnitCore « src « nunit « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 52a73b6855e126b43e6851b6d65fbe7e5082f401 (plain)
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
namespace NUnit.Runner {
  using System;
/// <summary>
/// 
/// </summary>
  public class TestCaseClassLoader : StandardTestSuiteLoader {
	  /// <summary>
	  /// 
	  /// </summary>
	  /// <param name="name"></param>
	  /// <param name="resolve"></param>
	  /// <returns></returns>
    public Type LoadClass(string name, bool resolve) {
      return Load(name);
    }
/// <summary>
/// 
/// </summary>
/// <param name="name"></param>
/// <returns></returns>
    public bool IsExcluded(string name) {
      return false;
    }
  }
}


#if false

// commented out till figure out .net class reloading

namespace NUnit.Runner {

  /**
 * A custom class loader which enables the reloading
 * of classes for each test run. The class loader
 * can be configured with a list of package paths that
 * should be excluded from loading. The loading
 * of these packages is delegated to the system class
 * loader. They will be shared across test runs.
 * <p>
 * The list of excluded package paths is specified in
 * a properties file "excluded.properties" that is located in 
 * the same place as the TestCaseClassLoader class.
 * <p>
 * <b>Known limitation:</b> the TestCaseClassLoader cannot load classes
 * from jar files.
 */


  public class TestCaseClassLoader: ClassLoader {
    /** scanned class path */
    private string[] fPathItems;
    /** excluded paths */
    private string[] fExcluded= { "com.sun.", "sun."};
    /** name of excluded properties file */
    static final string EXCLUDED_FILE= "excluded.properties";
    /**
     * Constructs a TestCaseLoader. It scans the class path
     * and the excluded package paths
     */
    public TestCaseClassLoader() {
      super();
      string classPath= System.getProperty("java.class.path");
      string separator= System.getProperty("path.separator");
        
      // first pass: count elements
      StringTokenizer st= new StringTokenizer(classPath, separator);
      int i= 0;
      while (st.hasMoreTokens()) {
        st.nextToken();
        i++;
      }
      // second pass: split
      fPathItems= new string[i];
      st= new StringTokenizer(classPath, separator);
      i= 0;
      while (st.hasMoreTokens()) {
        fPathItems[i++]= st.nextToken();
      }

      string[] excluded= ReadExcludedPackages();
      if (excluded != null)
        fExcluded= excluded;    
    }
    public java.net.URL GetResource(string name) {
      return ClassLoader.getSystemResource(name);
    }
    public InputStream GetResourceAsStream(string name) {
      return ClassLoader.getSystemResourceAsStream(name);
    }
    protected boolean IsExcluded(string name) {
      // exclude the "java" and "junit" packages.
      // They always need to be excluded so that they are loaded by the system class loader
      if (name.startsWith("java.") || 
          name.startsWith("junit.framework") ||
          name.startsWith("junit.extensions") ||
          name.startsWith("junit.util") ||
          name.startsWith("junit.ui"))
        return true;
            
      // exclude the user defined package paths
      for (int i= 0; i < fExcluded.length; i++) {
        if (name.startsWith(fExcluded[i])) {
          return true;
        }
      }
      return false;    
    }
    public synchronized Class LoadClass(string name, boolean resolve)
      throws ClassNotFoundException {
            
      Class c= FindLoadedClass(name);
      if (c != null)
        return c;
      //
      // Delegate the loading of excluded classes to the
      // standard class loader.
      //
      if (IsExcluded(name)) {
        try {
          c= findSystemClass(name);
          return c;
        } catch (ClassNotFoundException e) {
          // keep searching
        }
      }
      if (c == null) {
        File file= Locate(name);
        if (file == null)
          throw new ClassNotFoundException();
        byte data[]= LoadClassData(file);
        c= defineClass(name, data, 0, data.length);
      }
      if (resolve) 
        resolveClass(c);
      return c;
    }
    private byte[] LoadClassData(File f) throws ClassNotFoundException {
      try {
        //System.out.println("loading: "+f.getPath());
        FileInputStream stream= new FileInputStream(f);
            
        try {
          byte[] b= new byte[stream.available()];
          stream.read(b);
          stream.close();
          return b;
        }
        catch (IOException e) {
          throw new ClassNotFoundException();
        }
      }
      catch (FileNotFoundException e) {
        throw new ClassNotFoundException();
      }
    }
    /**
     * Locate the given file.
     * @return Returns null if file couldn't be found.
     */
    private File Locate(string fileName) { 
      fileName= fileName.replace('.', '/')+".class";
      File path= null;
        
      if (fileName != null) {
        for (int i= 0; i < fPathItems.length; i++) {
          path= new File(fPathItems[i], fileName);
          if (path.exists())
            return path;
        }
      }
      return null;
    }
    private string[] ReadExcludedPackages() {        
      InputStream is= getClass().GetResourceAsStream(EXCLUDED_FILE);
      if (is == null) 
        return null;
      Properties p= new Properties();
      try {
        p.Load(is);
      }
      catch (IOException e) {
        return null;
      }
      Vector v= new Vector(10);
      for (Enumeration e= p.propertyNames(); e.hasMoreElements(); ) {
        string key= (string)e.nextElement();
        if (key.startsWith("excluded.")) {
          string path= p.getProperty(key);
          if (path.endsWith("*"))
            path= path.substring(0, path.length()-1);
          if (path.length() > 0) 
            v.addElement(path);                
        }
      }
      string[] excluded= new string[v.size()];
      for (int i= 0; i < v.size(); i++)
        excluded[i]= (string)v.elementAt(i);
      return excluded;
    }
  }

#endif