Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
apollo
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
apollo
Commits
04781220
Unverified
Commit
04781220
authored
May 16, 2020
by
figroc
Committed by
GitHub
May 16, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow repeatable deletions and enhance thread safety (#3069)
parent
4d56835c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
88 additions
and
7 deletions
+88
-7
apollo-mockserver/src/main/java/com/ctrip/framework/apollo/mockserver/EmbeddedApollo.java
...com/ctrip/framework/apollo/mockserver/EmbeddedApollo.java
+7
-6
apollo-mockserver/src/test/java/com/ctrip/framework/apollo/mockserver/ApolloMockServerApiTest.java
.../framework/apollo/mockserver/ApolloMockServerApiTest.java
+77
-1
apollo-mockserver/src/test/resources/mockdata-anotherNamespace.properties
...r/src/test/resources/mockdata-anotherNamespace.properties
+4
-0
No files found.
apollo-mockserver/src/main/java/com/ctrip/framework/apollo/mockserver/EmbeddedApollo.java
View file @
04781220
...
...
@@ -5,14 +5,13 @@ import com.ctrip.framework.apollo.core.dto.ApolloConfig;
import
com.ctrip.framework.apollo.core.dto.ApolloConfigNotification
;
import
com.ctrip.framework.apollo.core.utils.ResourceUtils
;
import
com.ctrip.framework.apollo.internals.ConfigServiceLocator
;
import
com.google.common.collect.ImmutableSet
;
import
com.google.common.collect.Maps
;
import
com.google.common.collect.Sets
;
import
com.google.gson.Gson
;
import
com.google.gson.reflect.TypeToken
;
import
java.lang.reflect.Method
;
import
java.lang.reflect.Type
;
import
java.util.ArrayList
;
import
java.util.HashMap
;
import
java.util.List
;
import
java.util.Map
;
import
java.util.Properties
;
...
...
@@ -38,8 +37,8 @@ public class EmbeddedApollo extends ExternalResource {
private
static
ConfigServiceLocator
CONFIG_SERVICE_LOCATOR
;
private
final
Gson
gson
=
new
Gson
();
private
final
Map
<
String
,
Map
<
String
,
String
>>
addedOrModifiedPropertiesOfNamespace
=
new
HashMap
<>
();
private
final
Map
<
String
,
Set
<
String
>>
deletedKeysOfNamespace
=
new
HashMap
<>
();
private
final
Map
<
String
,
Map
<
String
,
String
>>
addedOrModifiedPropertiesOfNamespace
=
Maps
.
newConcurrentMap
();
private
final
Map
<
String
,
Set
<
String
>>
deletedKeysOfNamespace
=
Maps
.
newConcurrentMap
();
private
MockWebServer
server
;
...
...
@@ -151,7 +150,7 @@ public class EmbeddedApollo extends ExternalResource {
if
(
addedOrModifiedPropertiesOfNamespace
.
containsKey
(
namespace
))
{
addedOrModifiedPropertiesOfNamespace
.
get
(
namespace
).
put
(
someKey
,
someValue
);
}
else
{
Map
<
String
,
String
>
m
=
new
HashMap
<>
();
Map
<
String
,
String
>
m
=
Maps
.
newConcurrentMap
();
m
.
put
(
someKey
,
someValue
);
addedOrModifiedPropertiesOfNamespace
.
put
(
namespace
,
m
);
}
...
...
@@ -164,7 +163,9 @@ public class EmbeddedApollo extends ExternalResource {
if
(
deletedKeysOfNamespace
.
containsKey
(
namespace
))
{
deletedKeysOfNamespace
.
get
(
namespace
).
add
(
someKey
);
}
else
{
deletedKeysOfNamespace
.
put
(
namespace
,
ImmutableSet
.
of
(
someKey
));
Set
<
String
>
m
=
Sets
.
newConcurrentHashSet
();
m
.
add
(
someKey
);
deletedKeysOfNamespace
.
put
(
namespace
,
m
);
}
}
...
...
apollo-mockserver/src/test/java/com/ctrip/framework/apollo/mockserver/ApolloMockServerApiTest.java
View file @
04781220
package
com
.
ctrip
.
framework
.
apollo
.
mockserver
;
import
static
org
.
junit
.
Assert
.
assertEquals
;
import
static
org
.
junit
.
Assert
.
assertNull
;
import
static
org
.
junit
.
Assert
.
assertTrue
;
import
com.ctrip.framework.apollo.Config
;
...
...
@@ -8,7 +9,10 @@ import com.ctrip.framework.apollo.ConfigChangeListener;
import
com.ctrip.framework.apollo.ConfigService
;
import
com.ctrip.framework.apollo.model.ConfigChangeEvent
;
import
com.google.common.util.concurrent.SettableFuture
;
import
java.util.concurrent.Semaphore
;
import
java.util.concurrent.TimeUnit
;
import
org.junit.ClassRule
;
import
org.junit.Test
;
...
...
@@ -51,7 +55,79 @@ public class ApolloMockServerApiTest {
assertEquals
(
someNewValue
,
otherConfig
.
getProperty
(
"key1"
,
null
));
assertEquals
(
"otherValue2"
,
otherConfig
.
getProperty
(
"key2"
,
null
));
assertTrue
(
changeEvent
.
isChanged
(
"key1"
));
}
@Test
public
void
testUpdateSamePropertyTwice
()
throws
Exception
{
String
someNewValue
=
"someNewValue"
;
Config
otherConfig
=
ConfigService
.
getConfig
(
anotherNamespace
);
final
Semaphore
changes
=
new
Semaphore
(
0
);
otherConfig
.
addChangeListener
(
new
ConfigChangeListener
()
{
@Override
public
void
onChange
(
ConfigChangeEvent
changeEvent
)
{
changes
.
release
();
}
});
assertEquals
(
"otherValue3"
,
otherConfig
.
getProperty
(
"key3"
,
null
));
embeddedApollo
.
addOrModifyProperty
(
anotherNamespace
,
"key3"
,
someNewValue
);
embeddedApollo
.
addOrModifyProperty
(
anotherNamespace
,
"key3"
,
someNewValue
);
assertTrue
(
changes
.
tryAcquire
(
5
,
TimeUnit
.
SECONDS
));
assertEquals
(
someNewValue
,
otherConfig
.
getProperty
(
"key3"
,
null
));
assertEquals
(
0
,
changes
.
availablePermits
());
}
@Test
public
void
testDeleteProperties
()
throws
Exception
{
Config
otherConfig
=
ConfigService
.
getConfig
(
anotherNamespace
);
final
SettableFuture
<
ConfigChangeEvent
>
future
=
SettableFuture
.
create
();
otherConfig
.
addChangeListener
(
new
ConfigChangeListener
()
{
@Override
public
void
onChange
(
ConfigChangeEvent
changeEvent
)
{
future
.
set
(
changeEvent
);
}
});
assertEquals
(
"otherValue4"
,
otherConfig
.
getProperty
(
"key4"
,
null
));
assertEquals
(
"otherValue5"
,
otherConfig
.
getProperty
(
"key5"
,
null
));
embeddedApollo
.
deleteProperty
(
anotherNamespace
,
"key4"
);
ConfigChangeEvent
changeEvent
=
future
.
get
(
5
,
TimeUnit
.
SECONDS
);
assertNull
(
otherConfig
.
getProperty
(
"key4"
,
null
));
assertEquals
(
"otherValue5"
,
otherConfig
.
getProperty
(
"key5"
,
null
));
assertTrue
(
changeEvent
.
isChanged
(
"key4"
));
}
@Test
public
void
testDeleteSamePropertyTwice
()
throws
Exception
{
Config
otherConfig
=
ConfigService
.
getConfig
(
anotherNamespace
);
final
Semaphore
changes
=
new
Semaphore
(
0
);
otherConfig
.
addChangeListener
(
new
ConfigChangeListener
()
{
@Override
public
void
onChange
(
ConfigChangeEvent
changeEvent
)
{
changes
.
release
();
}
});
assertEquals
(
"otherValue6"
,
otherConfig
.
getProperty
(
"key6"
,
null
));
embeddedApollo
.
deleteProperty
(
anotherNamespace
,
"key6"
);
embeddedApollo
.
deleteProperty
(
anotherNamespace
,
"key6"
);
assertTrue
(
changes
.
tryAcquire
(
5
,
TimeUnit
.
SECONDS
));
assertNull
(
otherConfig
.
getProperty
(
"key6"
,
null
));
assertEquals
(
0
,
changes
.
availablePermits
());
}
}
apollo-mockserver/src/test/resources/mockdata-anotherNamespace.properties
View file @
04781220
key1
=
otherValue1
key2
=
otherValue2
key3
=
otherValue3
key4
=
otherValue4
key5
=
otherValue5
key6
=
otherValue6
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment