/[projects]/android/TrainInfoService/src/dk/thoerup/traininfoservice/db/TestServlet.java
ViewVC logotype

Diff of /android/TrainInfoService/src/dk/thoerup/traininfoservice/db/TestServlet.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

android/TrainInfoService/src/dk/thoerup/traininfoservice/TestServlet.java revision 736 by torben, Tue May 18 21:07:02 2010 UTC android/TrainInfoService/src/dk/thoerup/traininfoservice/db/TestServlet.java revision 1256 by torben, Mon Apr 4 11:58:30 2011 UTC
# Line 1  Line 1 
1  package dk.thoerup.traininfoservice;  package dk.thoerup.traininfoservice.db;
2    
3  import java.io.IOException;  import java.io.IOException;
4  import java.sql.SQLException;  import java.sql.SQLException;
5  import java.util.Random;  import java.util.Random;
6    
7  import javax.servlet.ServletException;  import javax.servlet.ServletException;
8    import javax.servlet.annotation.WebServlet;
9  import javax.servlet.http.HttpServlet;  import javax.servlet.http.HttpServlet;
10  import javax.servlet.http.HttpServletRequest;  import javax.servlet.http.HttpServletRequest;
11  import javax.servlet.http.HttpServletResponse;  import javax.servlet.http.HttpServletResponse;
12    
13    
14    @WebServlet(urlPatterns={"/TestServlet"})
15  public class TestServlet extends HttpServlet {  public class TestServlet extends HttpServlet {
16          private static final long serialVersionUID = 1L;          private static final long serialVersionUID = 1L;
17            
18            Random r = new Random();
19    
20          //South-West corner= 54.0, 7.0          //South-West corner= 54.5, 8.0
21          //North-East corner= 58.0, 16.0          //North-East corner= 57.8, 12.7
22          //Latitude span=4.0          //Latitude span=3.3
23          //Longitude span=9.0          //Longitude span=4.7
24          void testFindNearest(int count) throws SQLException {          void testFindNearest(int count) throws SQLException {          
                 Random r = new Random();  
25    
26                  StationDAO db = new StationDAO();                  StationDAO db = new StationDAO();
27    
28    
29                  for (int i=0; i<count; i++) {                  for (int i=0; i<count; i++) {
30                          float lat = (r.nextFloat()*4.0F) + 54.0F;                          float lat = (r.nextFloat()*3.3F) + 54.5F;
31                          float lng = (r.nextFloat()*9.0F) + 7.0F;                          float lng = (r.nextFloat()*4.7F) + 8.0F;
32                          db.getByLocation(lat, lng);                          db.getByLocation(lat, lng);
33                  }                  }
   
   
   
34          }          }
35    
36          void testFindName(int count)  throws SQLException {          void testFindName(int count)  throws SQLException {
                 Random r = new Random();  
37                                    
38                  StationDAO db = new StationDAO();                  StationDAO db = new StationDAO();
39                                    
40                  for (int i=0; i<count; i++) {                  for (int i=0; i<count; i++) {
41                          char c1 = ((char)r.nextInt(26));                          char c1 = getRandomCharacter();
42                          c1 += 'a';                          char c2 = getRandomCharacter();
                         char c2 = ((char)r.nextInt(26)) ;  
                         c2 += 'a';  
43    
44                          String search = "" + c1 + c2;                          String search = "" + c1 + c2;
45                          System.out.println(search);                          System.out.println(search);
46                                                    
47                          db.getByName(search);                          db.getByName(search);
48                  }                  }
49            }
50    
51            private char getRandomCharacter() {
52                    char c1 = ((char)r.nextInt(26));
53                    c1 += 'a';
54                    return c1;
55            }
56            
57            void testFindFavorites(int count)  throws SQLException {
58                    
59                    StationDAO db = new StationDAO();
60                    
61                    for (int i=0; i<count; i++) {
62                            final int MAX = 8;
63                            
64                            StringBuilder sb = new StringBuilder();
65                            sb.append('(');
66                            for (int j=0; j<MAX;j++) {
67                                    if (j>0)
68                                            sb.append(',');
69                                    sb.append(r.nextInt(400));
70                            }
71                            sb.append(')');
72    
73    
74                            db.getByList(sb.toString());
75                    }
76          }          }
77    
78          protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {          protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
# Line 69  public class TestServlet extends HttpSer Line 90  public class TestServlet extends HttpSer
90                                  testFindName(count);                                  testFindName(count);
91                          } else if ( test.equals("nearest") ) {                          } else if ( test.equals("nearest") ) {
92                                  testFindNearest(count);                                  testFindNearest(count);
93                            } else if ( test.equals("favorites") ) {
94                                    testFindFavorites(count);
95                          } else {                          } else {
96                                  throw new ServletException("No parameter test");                                  throw new ServletException("No parameter test");
97                          }                          }

Legend:
Removed from v.736  
changed lines
  Added in v.1256

  ViewVC Help
Powered by ViewVC 1.1.20