Skip to content

Commit

Permalink
GEODE-8375: No-op test to run Redis server for Geode for local develo…
Browse files Browse the repository at this point in the history
…pment (apache#5392)
  • Loading branch information
sabbey37 authored Jul 23, 2020
1 parent a4306dc commit a322434
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
public class GeodeRedisServerRule extends SerializableExternalResource {
private GemFireCache cache;
private GeodeRedisServer server;
private String password;
private CacheFactory cacheFactory;

public GeodeRedisServerRule() {
Expand All @@ -42,7 +41,7 @@ public GeodeRedisServerRule() {
}

@Override
protected void before() throws Throwable {
protected void before() {
cache = cacheFactory.create();
server = new GeodeRedisServer("localhost", 0, (InternalCache) cache);
server.setAllowUnsupportedCommands(true);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more contributor license
* agreements. See the NOTICE file distributed with this work for additional information regarding
* copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the License. You may obtain a
* copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package org.apache.geode.redis.internal;

import org.junit.ClassRule;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.experimental.categories.Category;

import org.apache.geode.logging.internal.log4j.api.LogService;
import org.apache.geode.redis.GeodeRedisServerRule;
import org.apache.geode.test.junit.categories.RedisTest;

@Category({RedisTest.class})
public class GeodeServerRunTest {
@ClassRule
public static GeodeRedisServerRule server = new GeodeRedisServerRule();

@Test
@Ignore("This is a no-op test to conveniently run redis api for geode server for local development/testing purposes")
public void runGeodeServer() {
LogService.getLogger().warn("Server running on port: " + server.getPort());
while (true) {
}
}
}

0 comments on commit a322434

Please sign in to comment.