Home
About
Blog
Products
Forum
Support
Contact
Sunbelt Computer Software
PL/B Language Development and Support
Home
About
Blog
Products
Forum
Support
Contact
project-ds/src/test/java/FeaturesTest.java at master · JavaDistFS/project-ds · GitHub
Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
JavaDistFS
/
project-ds
Public
Notifications
You must be signed in to change notification settings
Fork
2
Star
0
Code
Issues
7
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Files
Expand file tree
master
Breadcrumbs
project-ds
/
src
/
test
/
java
/
FeaturesTest.java
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
113 lines (97 loc) · 5.46 KB
master
Breadcrumbs
project-ds
/
src
/
test
/
java
/
FeaturesTest.java
Copy path
Top
File metadata and controls
Code
Blame
113 lines (97 loc) · 5.46 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
import
configuration
.
Configuration
;
import
infrastructure
.
Command
;
import
infrastructure
.
Node
;
import
infrastructure
.
client
.
ReliableOrderedUdpClient
;
import
infrastructure
.
client
.
RemoteClient
;
import
infrastructure
.
client
.
UdpClient
;
import
infrastructure
.
converter
.*;
import
infrastructure
.
system
.
Leader
;
import
infrastructure
.
system
.
RemoteNode
;
import
infrastructure
.
system
.
SystemContext
;
import
infrastructure
.
system
.
message
.
FileDeletionMessage
;
import
infrastructure
.
system
.
message
.
FileEditMessage
;
import
infrastructure
.
system
.
message
.
FileReadMessage
;
import
infrastructure
.
system
.
message
.
FileUploadMessage
;
import
org
.
junit
.
jupiter
.
api
.*;
import
java
.
io
.
IOException
;
import
java
.
net
.
DatagramPacket
;
import
java
.
net
.
DatagramSocket
;
import
java
.
net
.
InetAddress
;
import
java
.
nio
.
charset
.
StandardCharsets
;
import
java
.
util
.
ArrayList
;
import
java
.
util
.
Arrays
;
import
java
.
util
.
List
;
import
java
.
util
.
Random
;
import
static
configuration
.
Configuration
.
DEFAULT_LISTEN_PORT
;
public
class
FeaturesTest
{
private
static
Leader
leader
;
private
static
List
<
Node
>
system
;
private
static
final
Random
random
=
new
Random
();
@
BeforeAll
static
void
beforeAll
()
throws
InterruptedException
{
try
{
leader
=
new
Leader
(
Node
.
getLocalIp
(),
DEFAULT_LISTEN_PORT
);
system
=
new
ArrayList
<>();
Node
node
=
new
Node
(
new
TestConfiguration
(
DEFAULT_LISTEN_PORT
,
leader
,
system
));
node
.
joinSystem
();
system
.
add
(
node
);
Thread
.
sleep
(
1000
);
node
=
new
Node
(
new
TestConfiguration
(
11111
,
null
,
system
));
node
.
joinSystem
();
system
.
add
(
node
);
Thread
.
sleep
(
1000
);
node
=
new
Node
(
new
TestConfiguration
(
randomPort
(),
null
,
system
));
node
.
joinSystem
();
system
.
add
(
node
);
Thread
.
sleep
(
1000
);
}
catch
(
IOException
e
) {
throw
new
RuntimeException
(
e
);
}
}
@
Test
void
fileUploadTest
()
throws
IOException
,
InterruptedException
{
final
RemoteClient
<
DatagramPacket
>
client
=
new
ReliableOrderedUdpClient
(
new
ResendPayloadConverter
(),
new
UdpClient
(),
new
Configuration
(
new
String
[]{}).
getContext
());
FileUploadConverter
converter
=
new
FileUploadConverter
();
FileReadConverter
fileReadConverter
=
new
FileReadConverter
();
FileUploadMessage
message
=
new
FileUploadMessage
(
"abc"
,
"abc"
.
getBytes
(
StandardCharsets
.
UTF_8
));
client
.
unicast
(
converter
.
encode
(
Command
.
FILE_UPLOAD
,
message
),
leader
.
ip
(),
leader
.
port
() +
1
);
client
.
unicast
(
fileReadConverter
.
encode
(
Command
.
FILE_READ
,
new
FileReadMessage
(
"abc"
,
null
,
new
RemoteNode
(
Node
.
getLocalIp
(),
4713
))),
leader
.
ip
(),
leader
.
port
() +
1
);
DatagramSocket
socket
=
new
DatagramSocket
(
4713
);
DatagramPacket
datagramPacket
=
new
DatagramPacket
(
new
byte
[
100
],
100
);
socket
.
receive
(
datagramPacket
);
FileReadMessage
readMessage
=
fileReadConverter
.
decode
(
Arrays
.
copyOfRange
(
datagramPacket
.
getData
(),
4
,
datagramPacket
.
getData
().
length
));
System
.
out
.
println
();
}
@
Test
void
fileEditTest
()
throws
IOException
,
InterruptedException
{
final
RemoteClient
<
DatagramPacket
>
client
=
new
ReliableOrderedUdpClient
(
new
ResendPayloadConverter
(),
new
UdpClient
(),
new
Configuration
(
new
String
[]{}).
getContext
());
FileUploadConverter
uploadConverter
=
new
FileUploadConverter
();
FileEditConverter
editConverter
=
new
FileEditConverter
();
FileReadConverter
fileReadConverter
=
new
FileReadConverter
();
FileUploadMessage
uploadMessage
=
new
FileUploadMessage
(
"abc"
,
"abc"
.
getBytes
(
StandardCharsets
.
UTF_8
));
FileEditMessage
editMessage
=
new
FileEditMessage
(
"abc"
,
"adc"
.
getBytes
(
StandardCharsets
.
UTF_8
));
client
.
unicast
(
uploadConverter
.
encode
(
Command
.
FILE_UPLOAD
,
uploadMessage
),
leader
.
ip
(),
leader
.
port
() +
1
);
client
.
unicast
(
editConverter
.
encode
(
Command
.
FILE_EDIT
,
editMessage
),
leader
.
ip
(),
leader
.
port
() +
1
);
client
.
unicast
(
fileReadConverter
.
encode
(
Command
.
FILE_READ
,
new
FileReadMessage
(
"abc"
,
null
,
new
RemoteNode
(
Node
.
getLocalIp
(),
4713
))),
leader
.
ip
(),
leader
.
port
() +
1
);
DatagramSocket
socket
=
new
DatagramSocket
(
4713
);
DatagramPacket
datagramPacket
=
new
DatagramPacket
(
new
byte
[
100
],
100
);
socket
.
receive
(
datagramPacket
);
FileReadMessage
readMessage
=
fileReadConverter
.
decode
(
Arrays
.
copyOfRange
(
datagramPacket
.
getData
(),
4
,
datagramPacket
.
getData
().
length
));
System
.
out
.
println
(
readMessage
.
fileName
() +
": "
+
new
String
(
readMessage
.
file
(),
StandardCharsets
.
UTF_8
));
}
@
Test
void
fileDeleteTest
()
throws
IOException
,
InterruptedException
{
final
RemoteClient
<
DatagramPacket
>
client
=
new
ReliableOrderedUdpClient
(
new
ResendPayloadConverter
(),
new
UdpClient
(),
new
Configuration
(
new
String
[]{}).
getContext
());
FileUploadConverter
converter
=
new
FileUploadConverter
();
FileUploadMessage
message
=
new
FileUploadMessage
(
"abc"
,
"abc"
.
getBytes
(
StandardCharsets
.
UTF_8
));
client
.
unicast
(
converter
.
encode
(
Command
.
FILE_UPLOAD
,
message
),
leader
.
ip
(),
leader
.
port
() +
1
);
FileDeletionPayloadConverter
deletionConverter
=
new
FileDeletionPayloadConverter
();
FileDeletionMessage
deletionMessage
=
new
FileDeletionMessage
(
"abc"
);
client
.
unicast
(
deletionConverter
.
encode
(
Command
.
FILE_DELETE
,
deletionMessage
),
leader
.
ip
(),
leader
.
port
() +
1
);
}
private
static
int
randomPort
() {
return
random
.
nextInt
(
55_535
) +
10_000
;
}
}
You can’t perform that action at this time.