forked from feast-dev/feast
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFeastClientTest.java
More file actions
178 lines (162 loc) · 6.35 KB
/
FeastClientTest.java
File metadata and controls
178 lines (162 loc) · 6.35 KB
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
/*
* SPDX-License-Identifier: Apache-2.0
* Copyright 2018-2019 The Feast Authors
*
* Licensed 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
*
* https://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 dev.feast;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.mockito.AdditionalAnswers.delegatesTo;
import static org.mockito.Mockito.mock;
import com.google.protobuf.Timestamp;
import feast.proto.serving.ServingAPIProto;
import feast.proto.serving.ServingAPIProto.FieldStatus;
import feast.proto.serving.ServingAPIProto.GetOnlineFeaturesRequest;
import feast.proto.serving.ServingAPIProto.GetOnlineFeaturesResponse;
import feast.proto.serving.ServingServiceGrpc.ServingServiceImplBase;
import feast.proto.types.ValueProto;
import feast.proto.types.ValueProto.Value;
import io.grpc.*;
import io.grpc.inprocess.InProcessChannelBuilder;
import io.grpc.inprocess.InProcessServerBuilder;
import io.grpc.stub.StreamObserver;
import io.grpc.testing.GrpcCleanupRule;
import java.time.Instant;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Optional;
import java.util.concurrent.atomic.AtomicBoolean;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
public class FeastClientTest {
private final String AUTH_TOKEN = "test token";
@Rule public GrpcCleanupRule grpcRule;
private AtomicBoolean isAuthenticated;
private ServingServiceImplBase servingMock =
mock(
ServingServiceImplBase.class,
delegatesTo(
new ServingServiceImplBase() {
@Override
public void getOnlineFeatures(
GetOnlineFeaturesRequest request,
StreamObserver<GetOnlineFeaturesResponse> responseObserver) {
if (!request.equals(FeastClientTest.getFakeRequest())) {
responseObserver.onError(Status.FAILED_PRECONDITION.asRuntimeException());
}
responseObserver.onNext(FeastClientTest.getFakeResponse());
responseObserver.onCompleted();
}
}));
private FeastClient client;
@Before
public void setup() throws Exception {
this.grpcRule = new GrpcCleanupRule();
this.isAuthenticated = new AtomicBoolean(false);
// setup fake serving service
String serverName = InProcessServerBuilder.generateName();
this.grpcRule.register(
InProcessServerBuilder.forName(serverName)
.directExecutor()
.addService(this.servingMock)
.build()
.start());
// setup test feast client target
ManagedChannel channel =
this.grpcRule.register(
InProcessChannelBuilder.forName(serverName).directExecutor().build());
this.client = new FeastClient(channel, Optional.empty());
}
@Test
public void shouldGetOnlineFeatures() {
shouldGetOnlineFeaturesWithClient(this.client);
}
private void shouldGetOnlineFeaturesWithClient(FeastClient client) {
List<Row> rows =
client.getOnlineFeatures(
Arrays.asList("driver:name", "driver:rating", "driver:null_value"),
Arrays.asList(
Row.create().set("driver_id", 1).setEntityTimestamp(Instant.ofEpochSecond(100))),
"driver_project");
assertEquals(
rows.get(0).getFields(),
new HashMap<String, Value>() {
{
put("driver_id", intValue(1));
put("driver:name", strValue("david"));
put("driver:rating", intValue(3));
put("driver:null_value", Value.newBuilder().build());
}
});
assertEquals(
rows.get(0).getStatuses(),
new HashMap<String, FieldStatus>() {
{
put("driver_id", FieldStatus.PRESENT);
put("driver:name", FieldStatus.PRESENT);
put("driver:rating", FieldStatus.PRESENT);
put("driver:null_value", FieldStatus.NULL_VALUE);
}
});
}
private static GetOnlineFeaturesRequest getFakeRequest() {
// setup mock serving service stub
return GetOnlineFeaturesRequest.newBuilder()
.setFeatures(
ServingAPIProto.FeatureList.newBuilder()
.addVal("driver:name")
.addVal("driver:rating")
.addVal("driver:null_value")
.build())
.putEntities("driver_id", ValueProto.RepeatedValue.newBuilder().addVal(intValue(1)).build())
.build();
}
private static GetOnlineFeaturesResponse getFakeResponse() {
return GetOnlineFeaturesResponse.newBuilder()
.addResults(
GetOnlineFeaturesResponse.FeatureVector.newBuilder()
.addValues(strValue("david"))
.addStatuses(FieldStatus.PRESENT)
.addEventTimestamps(Timestamp.newBuilder())
.build())
.addResults(
GetOnlineFeaturesResponse.FeatureVector.newBuilder()
.addValues(intValue(3))
.addStatuses(FieldStatus.PRESENT)
.addEventTimestamps(Timestamp.newBuilder())
.build())
.addResults(
GetOnlineFeaturesResponse.FeatureVector.newBuilder()
.addValues(Value.newBuilder().build())
.addStatuses(FieldStatus.NULL_VALUE)
.addEventTimestamps(Timestamp.newBuilder())
.build())
.setMetadata(
ServingAPIProto.GetOnlineFeaturesResponseMetadata.newBuilder()
.setFeatureNames(
ServingAPIProto.FeatureList.newBuilder()
.addVal("driver:name")
.addVal("driver:rating")
.addVal("driver:null_value"))
.build())
.build();
}
private static Value strValue(String val) {
return Value.newBuilder().setStringVal(val).build();
}
private static Value intValue(int val) {
return Value.newBuilder().setInt32Val(val).build();
}
}