tdas commented on a change in pull request #32938:
URL: https://github.com/apache/spark/pull/32938#discussion_r655787862



##########
File path: 
sql/core/src/main/scala/org/apache/spark/sql/streaming/TestGroupState.scala
##########
@@ -0,0 +1,161 @@
+/*
+ * 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.spark.sql.streaming
+
+import org.apache.spark.annotation.{Evolving, Experimental}
+import org.apache.spark.api.java.Optional
+import org.apache.spark.sql.execution.streaming.GroupStateImpl
+import org.apache.spark.sql.execution.streaming.GroupStateImpl._
+
+/**
+ * The extended version of [[GroupState]] interface with extra getters of 
state machine fields
+ * to improve testability of the [[GroupState]] implementations
+ * which inherit from the extended interface.
+ *
+ * Scala example of using `TestGroupState`:
+ * {{{
+ * import org.apache.spark.sql.streaming.TestGroupState
+ * // other imports
+ *
+ * // test class setups
+ *
+ * test("Structured Streaming state update function") {
+ *   // Creates the prevState input for the state transition function
+ *   // with desired configs. The create() API would guarantee that
+ *   // the generated instance has the same behavior as the one built by
+ *   // engine with the same configs.
+ *   var prevState = TestGroupState.create[UserStatus](
+ *     optionalState = Optional.empty[UserStatus],
+ *     timeoutConf = EventTimeTimeout,
+ *     batchProcessingTimeMs = 1L,
+ *     eventTimeWatermarkMs = Optional.of(1L),
+ *     hasTimedOut = false)
+ *
+ *   val userId: String = ...
+ *   val actions: Iterator[UserAction] = ...
+ *
+ *   // Asserts the prevState is in init state without updates.
+ *   assert(!prevState.hasUpdated)
+ *
+ *   // Calls the state transition function with the test previous state
+ *   //  with desired configs.
+ *   updateState(userId, actions, prevState)
+ *
+ *   // Asserts the test GroupState object has been updated after calling
+ *   // the state transition function
+ *   assert(prevState.hasUpdated)
+ * }
+ * }}}
+ *
+ * Java example of using `TestGroupSate`:
+ * {{{
+ * import org.apache.spark.sql.streaming.TestGroupState;
+ * // other imports
+ *
+ * // test class setups
+ *
+ * // test `flatMapGroupsWithState` state transition function `updateState()`
+ * public void testUpdateState() {
+ *   // Creates the prevState input for the state transition function
+ *   // with desired configs. The create() API would guarantee that
+ *   // the generated instance has the same behavior as the one built by
+ *   // engine with the same configs.
+ *   TestGroupState prevState = new TestGroupState<UserStatus>().create(
+ *     optionalState = Optional.<UserStatus>empty(),
+ *     timeoutConf = EventTimeTimeout,
+ *     batchProcessingTimeMs = 1L,
+ *     eventTimeWatermarkMs = Optional.of(1L),
+ *     hasTimedOut = false);
+ *
+ *   String userId = ...;
+ *   ArrayList<UserAction> actions = ...;
+ *
+ *   // Asserts the prevState is in init state without updates.
+ *   assertTrue(!prevState.hasUpdated());
+ *
+ *   // Calls the state transition function with the test previous state
+ *   //  with desired configs.
+ *   updateState(userId, actions, prevState);
+ *
+ *   // Asserts the test GroupState object has been updated after calling
+ *   // the state transition function
+ *   assertTrue(prevState.hasUpdated());
+ * }
+ * }}}
+ *
+ * @tparam S User-defined type of the state to be stored for each group. Must 
be encodable into
+ *           Spark SQL types (see `Encoder` for more details).
+ * @since 3.2.0
+ */
+@Experimental
+@Evolving
+trait TestGroupState[S] extends GroupState[S] {
+  /** Whether the state has been marked for removing */
+  def isRemoved: Boolean
+
+  /** Whether the state has been updated but not removed */
+  def isUpdated: Boolean
+
+  /**
+   * Returns the timestamp if setTimeoutTimestamp is called.

Review comment:
       Link to the corresponding functions in GroupState. If thats complicated, 
at least put the function names and codee snippets in backticks
   ```
   `setTimeoutTimestamp` `setTimeoutDuration` 
   `Optional.empty`
   ```
   
   
   and `Or returns batch processing time + the duration...` 
   keeps the verb tense consistent with the previous "Returns the timestamp"
   
   
   




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to