Skip to content

Commit dfca49e

Browse files
author
Yevhen Zavhorodnii
committed
Reference to structurizr and outline the project structure
1 parent c041b02 commit dfca49e

8 files changed

+84
-24
lines changed

lib/build.gradle.kts

+8
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ plugins {
1010
`java-library`
1111
}
1212

13+
description = "Exports Structurizr models to threagile format"
14+
group = "com.ticketmaster.structurizr"
15+
version = "1.0.1-SNAPSHOT"
16+
1317
repositories {
1418
// Use Maven Central for resolving dependencies.
1519
mavenCentral()
@@ -26,6 +30,10 @@ dependencies {
2630

2731
// This dependency is used internally, and not exposed to consumers on their own compile classpath.
2832
implementation(libs.guava)
33+
34+
35+
implementation(libs.structurizr.export)
36+
testImplementation(libs.structurizr.client)
2937
}
3038

3139
// Apply a specific Java toolchain to ease working on different environments.

lib/src/main/java/com/ticketmaster/structurizr/Library.java

-10
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
package com.ticketmaster.structurizr;
2+
3+
import com.structurizr.export.WorkspaceExport;
4+
5+
public class ThreagileWorkspaceExport extends WorkspaceExport {
6+
7+
public ThreagileWorkspaceExport(String definition) {
8+
super(definition);
9+
}
10+
11+
@Override
12+
public String getFileExtension() {
13+
return "yaml";
14+
}
15+
16+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package com.ticketmaster.structurizr;
2+
3+
import com.structurizr.Workspace;
4+
import com.structurizr.export.AbstractWorkspaceExporter;
5+
import com.structurizr.export.WorkspaceExport;
6+
7+
public class ThreagileWorkspaceExporter extends AbstractWorkspaceExporter {
8+
public WorkspaceExport export(Workspace workspace) {
9+
return new ThreagileWorkspaceExport("Some yaml");
10+
}
11+
12+
}

lib/src/test/java/com/ticketmaster/structurizr/LibraryTest.java

-14
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
package com.ticketmaster.structurizr;
2+
3+
import org.junit.jupiter.api.Test;
4+
import static org.junit.jupiter.api.Assertions.assertEquals;
5+
6+
public class ThreagileWorkspaceExportTest {
7+
8+
@Test
9+
void fileExtensionReturnsYaml() {
10+
ThreagileWorkspaceExport threagileWorkspaceExport = new ThreagileWorkspaceExport("some yaml");
11+
12+
assertEquals("yaml", threagileWorkspaceExport.getFileExtension(), "Expected extension should be yaml");
13+
}
14+
15+
@Test
16+
void definitionReturnsValueFromCtor() {
17+
ThreagileWorkspaceExport threagileWorkspaceExport = new ThreagileWorkspaceExport("some yaml");
18+
19+
assertEquals("some yaml", threagileWorkspaceExport.getDefinition(), "Expected to get same value as given in constructor");
20+
}
21+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
package com.ticketmaster.structurizr;
2+
3+
import org.junit.jupiter.api.Test;
4+
import static org.junit.jupiter.api.Assertions.assertEquals;
5+
import com.structurizr.export.WorkspaceExport;
6+
7+
public class ThreagileWorkspaceExporterTest {
8+
9+
@Test
10+
void fileExtensionReturnsYaml() {
11+
ThreagileWorkspaceExporter threagileWorkspaceExporter = new ThreagileWorkspaceExporter();
12+
13+
WorkspaceExport workspaceExport = threagileWorkspaceExporter.export(null);
14+
15+
assertEquals("Some yaml", workspaceExport.getDefinition(), "Expected to get same value as given in export method");
16+
}
17+
}

settings.gradle.kts

+10
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,13 @@ plugins {
1212

1313
rootProject.name = "structurizr-threagile-exporter"
1414
include("lib")
15+
16+
dependencyResolutionManagement {
17+
versionCatalogs {
18+
create("libs") {
19+
plugin("kotlin", "org.jetbrains.kotlin.jvm").version("1.9.22")
20+
library("structurizr-export", "com.structurizr", "structurizr-export").version("1.19.0")
21+
library("structurizr-client", "com.structurizr", "structurizr-client").version("1.29.0")
22+
}
23+
}
24+
}

0 commit comments

Comments
 (0)