mirror of
https://github.com/sismics/docs.git
synced 2024-11-22 05:57:57 +01:00
next dev iteration + cleanup stress project
This commit is contained in:
parent
ee6ed2bf0b
commit
1fef4c3d2e
@ -5,7 +5,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>com.sismics.docs</groupId>
|
<groupId>com.sismics.docs</groupId>
|
||||||
<artifactId>docs-parent</artifactId>
|
<artifactId>docs-parent</artifactId>
|
||||||
<version>1.9</version>
|
<version>1.10-SNAPSHOT</version>
|
||||||
<relativePath>..</relativePath>
|
<relativePath>..</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
@ -1,81 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
||||||
|
|
||||||
<parent>
|
|
||||||
<groupId>com.sismics.docs</groupId>
|
|
||||||
<artifactId>docs-parent</artifactId>
|
|
||||||
<version>1.9</version>
|
|
||||||
<relativePath>..</relativePath>
|
|
||||||
</parent>
|
|
||||||
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<artifactId>docs-stress</artifactId>
|
|
||||||
<packaging>jar</packaging>
|
|
||||||
<name>Docs Stress</name>
|
|
||||||
|
|
||||||
<dependencies>
|
|
||||||
<!-- Dependencies to Jersey -->
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.glassfish.jersey.core</groupId>
|
|
||||||
<artifactId>jersey-client</artifactId>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.glassfish.jersey.media</groupId>
|
|
||||||
<artifactId>jersey-media-multipart</artifactId>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<!-- Depenedencies to Docs -->
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.sismics.docs</groupId>
|
|
||||||
<artifactId>docs-web-common</artifactId>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.sismics.docs</groupId>
|
|
||||||
<artifactId>docs-web-common</artifactId>
|
|
||||||
<type>test-jar</type>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<!-- Other external dependencies -->
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.google.guava</groupId>
|
|
||||||
<artifactId>guava</artifactId>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>log4j</groupId>
|
|
||||||
<artifactId>log4j</artifactId>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.slf4j</groupId>
|
|
||||||
<artifactId>slf4j-log4j12</artifactId>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.slf4j</groupId>
|
|
||||||
<artifactId>slf4j-api</artifactId>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.slf4j</groupId>
|
|
||||||
<artifactId>jcl-over-slf4j</artifactId>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>junit</groupId>
|
|
||||||
<artifactId>junit</artifactId>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
</dependencies>
|
|
||||||
|
|
||||||
<build>
|
|
||||||
<resources>
|
|
||||||
<resource>
|
|
||||||
<directory>src/main/resources</directory>
|
|
||||||
</resource>
|
|
||||||
</resources>
|
|
||||||
</build>
|
|
||||||
</project>
|
|
@ -1,135 +0,0 @@
|
|||||||
package com.sismics.docs.stress;
|
|
||||||
|
|
||||||
import com.google.common.collect.Lists;
|
|
||||||
import com.google.common.collect.Sets;
|
|
||||||
import com.google.common.io.Resources;
|
|
||||||
import com.sismics.docs.rest.util.ClientUtil;
|
|
||||||
import com.sismics.util.filter.TokenBasedSecurityFilter;
|
|
||||||
import org.glassfish.jersey.client.ClientResponse;
|
|
||||||
import org.glassfish.jersey.media.multipart.FormDataMultiPart;
|
|
||||||
import org.glassfish.jersey.media.multipart.MultiPartFeature;
|
|
||||||
import org.glassfish.jersey.media.multipart.file.StreamDataBodyPart;
|
|
||||||
import org.junit.Assert;
|
|
||||||
import org.slf4j.Logger;
|
|
||||||
import org.slf4j.LoggerFactory;
|
|
||||||
|
|
||||||
import javax.json.JsonObject;
|
|
||||||
import javax.ws.rs.client.*;
|
|
||||||
import javax.ws.rs.core.Form;
|
|
||||||
import javax.ws.rs.core.MediaType;
|
|
||||||
import javax.ws.rs.core.Response.Status;
|
|
||||||
import java.io.InputStream;
|
|
||||||
import java.util.Date;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Set;
|
|
||||||
import java.util.UUID;
|
|
||||||
import java.util.concurrent.ThreadLocalRandom;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Stress app for Teedy.
|
|
||||||
*
|
|
||||||
* @author bgamard
|
|
||||||
*/
|
|
||||||
public class Main {
|
|
||||||
/**
|
|
||||||
* Logger.
|
|
||||||
*/
|
|
||||||
private static final Logger log = LoggerFactory.getLogger(Main.class);
|
|
||||||
|
|
||||||
private static final String API_URL = "http://localhost:9999/docs-web/api/";
|
|
||||||
private static final int USER_COUNT = 50;
|
|
||||||
private static final int DOCUMENT_PER_USER_COUNT = 2000;
|
|
||||||
private static final int TAG_PER_USER_COUNT = 20;
|
|
||||||
private static final int FILE_PER_DOCUMENT_COUNT = 10;
|
|
||||||
|
|
||||||
private static Client client = ClientBuilder.newClient();
|
|
||||||
|
|
||||||
private static Set<User> userSet = Sets.newHashSet();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Entry point.
|
|
||||||
*
|
|
||||||
* @param args Args
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public static void main(String[] args) throws Exception {
|
|
||||||
log.info("Starting stress test...");
|
|
||||||
|
|
||||||
WebTarget resource = client.target(API_URL);
|
|
||||||
ClientUtil clientUtil = new ClientUtil(resource);
|
|
||||||
|
|
||||||
// Create users
|
|
||||||
for (int i = 0; i < USER_COUNT; i++) {
|
|
||||||
String username = generateString();
|
|
||||||
clientUtil.createUser(username);
|
|
||||||
userSet.add(new User(username, (clientUtil.login(username))));
|
|
||||||
log.info("Created user " + (i + 1) + "/" + USER_COUNT);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Create tags for each user
|
|
||||||
int tagCreatedCount = 1;
|
|
||||||
for (User user : userSet) {
|
|
||||||
Invocation.Builder tagResource = resource.path("/tag").request()
|
|
||||||
.cookie(TokenBasedSecurityFilter.COOKIE_NAME, user.authToken);
|
|
||||||
|
|
||||||
for (int j = 0; j < TAG_PER_USER_COUNT; j++) {
|
|
||||||
Form form = new Form();
|
|
||||||
String name = generateString();
|
|
||||||
form.param("name", name);
|
|
||||||
form.param("color", "#ff0000");
|
|
||||||
JsonObject json = tagResource.put(Entity.form(form), JsonObject.class);
|
|
||||||
user.tagList.add(json.getString("id"));
|
|
||||||
log.info("Created tag " + (tagCreatedCount++) + "/" + TAG_PER_USER_COUNT * USER_COUNT);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Create documents for each user
|
|
||||||
int documentCreatedCount = 1;
|
|
||||||
for (User user : userSet) {
|
|
||||||
for (int i = 0; i < DOCUMENT_PER_USER_COUNT; i++) {
|
|
||||||
long createDate = new Date().getTime();
|
|
||||||
Form form = new Form()
|
|
||||||
.param("title", generateString())
|
|
||||||
.param("description", generateString())
|
|
||||||
.param("tags", user.tagList.get(ThreadLocalRandom.current().nextInt(user.tagList.size()))) // Random tag
|
|
||||||
.param("language", "eng")
|
|
||||||
.param("create_date", Long.toString(createDate));
|
|
||||||
JsonObject json = resource.path("/document").request()
|
|
||||||
.cookie(TokenBasedSecurityFilter.COOKIE_NAME, user.authToken)
|
|
||||||
.put(Entity.form(form), JsonObject.class);
|
|
||||||
String documentId = json.getString("id");
|
|
||||||
log.info("Created document " + (documentCreatedCount++) + "/" + DOCUMENT_PER_USER_COUNT * USER_COUNT + " for user: " + user.username);
|
|
||||||
|
|
||||||
// Add files for each document
|
|
||||||
for (int j = 0; j < FILE_PER_DOCUMENT_COUNT; j++) {
|
|
||||||
try (InputStream is = Resources.getResource("empty.png").openStream()) {
|
|
||||||
StreamDataBodyPart streamDataBodyPart = new StreamDataBodyPart("file", is, "empty.png");
|
|
||||||
@SuppressWarnings("resource")
|
|
||||||
ClientResponse response = resource
|
|
||||||
.register(MultiPartFeature.class)
|
|
||||||
.path("/file").request()
|
|
||||||
.cookie(TokenBasedSecurityFilter.COOKIE_NAME, user.authToken)
|
|
||||||
.put(Entity.entity(new FormDataMultiPart().field("id", documentId).bodyPart(streamDataBodyPart),
|
|
||||||
MediaType.MULTIPART_FORM_DATA_TYPE), ClientResponse.class);
|
|
||||||
Assert.assertEquals(Status.OK, Status.fromStatusCode(response.getStatus()));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private static String generateString() {
|
|
||||||
return UUID.randomUUID().toString().replace("-", "");
|
|
||||||
}
|
|
||||||
|
|
||||||
private static class User {
|
|
||||||
String username;
|
|
||||||
List<String> tagList = Lists.newArrayList();
|
|
||||||
String authToken;
|
|
||||||
|
|
||||||
User(String username, String authToken) {
|
|
||||||
this.username = username;
|
|
||||||
this.authToken = authToken;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Binary file not shown.
Before Width: | Height: | Size: 921 B |
@ -1,6 +0,0 @@
|
|||||||
log4j.rootCategory=WARN, CONSOLE
|
|
||||||
log4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender
|
|
||||||
log4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout
|
|
||||||
log4j.appender.CONSOLE.layout.ConversionPattern=%d{DATE} %p %l %m %n
|
|
||||||
|
|
||||||
log4j.logger.com.sismics=DEBUG
|
|
@ -5,7 +5,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>com.sismics.docs</groupId>
|
<groupId>com.sismics.docs</groupId>
|
||||||
<artifactId>docs-parent</artifactId>
|
<artifactId>docs-parent</artifactId>
|
||||||
<version>1.9</version>
|
<version>1.10-SNAPSHOT</version>
|
||||||
<relativePath>..</relativePath>
|
<relativePath>..</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>com.sismics.docs</groupId>
|
<groupId>com.sismics.docs</groupId>
|
||||||
<artifactId>docs-parent</artifactId>
|
<artifactId>docs-parent</artifactId>
|
||||||
<version>1.9</version>
|
<version>1.10-SNAPSHOT</version>
|
||||||
<relativePath>..</relativePath>
|
<relativePath>..</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
2
pom.xml
2
pom.xml
@ -6,7 +6,7 @@
|
|||||||
<groupId>com.sismics.docs</groupId>
|
<groupId>com.sismics.docs</groupId>
|
||||||
<artifactId>docs-parent</artifactId>
|
<artifactId>docs-parent</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<version>1.9</version>
|
<version>1.10-SNAPSHOT</version>
|
||||||
|
|
||||||
<name>Docs Parent</name>
|
<name>Docs Parent</name>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user