Skip to content

Commit f93641d

Browse files
committedMar 13, 2024
feat(dataverse): implements dataverse query
1 parent 4c81b9d commit f93641d

File tree

3 files changed

+66
-9
lines changed

3 files changed

+66
-9
lines changed
 

‎contracts/okp4-dataverse/src/contract.rs

+44-4
Original file line numberDiff line numberDiff line change
@@ -113,16 +113,29 @@ pub mod execute {
113113
}
114114

115115
#[cfg_attr(not(feature = "library"), entry_point)]
116-
pub fn query(_deps: Deps<'_>, _env: Env, _msg: QueryMsg) -> StdResult<Binary> {
117-
Err(StdError::generic_err("Not implemented"))
116+
pub fn query(deps: Deps<'_>, _env: Env, msg: QueryMsg) -> StdResult<Binary> {
117+
match msg {
118+
QueryMsg::Dataverse {} => to_json_binary(&query::dataverse(deps)?),
119+
}
118120
}
119121

120-
pub mod query {}
122+
pub mod query {
123+
use crate::msg::DataverseResponse;
124+
use crate::state::DATAVERSE;
125+
use cosmwasm_std::{Deps, StdResult};
126+
127+
pub fn dataverse(deps: Deps<'_>) -> StdResult<DataverseResponse> {
128+
DATAVERSE.load(deps.storage).map(|d| DataverseResponse {
129+
name: d.name,
130+
triplestore_address: d.triplestore_address,
131+
})
132+
}
133+
}
121134

122135
#[cfg(test)]
123136
mod tests {
124137
use super::*;
125-
use crate::msg::{RdfFormat, TripleStoreConfig, TripleStoreLimitsInput};
138+
use crate::msg::{DataverseResponse, RdfFormat, TripleStoreConfig, TripleStoreLimitsInput};
126139
use crate::testutil::testutil::read_test_data;
127140
use cosmwasm_std::testing::{mock_dependencies, mock_env, mock_info};
128141
use cosmwasm_std::{
@@ -197,6 +210,33 @@ mod tests {
197210
)
198211
}
199212

213+
#[test]
214+
fn proper_dataverse() {
215+
let mut deps = mock_dependencies();
216+
217+
DATAVERSE
218+
.save(
219+
deps.as_mut().storage,
220+
&Dataverse {
221+
name: "my-dataverse".to_string(),
222+
triplestore_address: Addr::unchecked("my-dataverse-addr"),
223+
},
224+
)
225+
.unwrap();
226+
227+
let res = query(deps.as_ref(), mock_env(), QueryMsg::Dataverse {});
228+
assert!(res.is_ok());
229+
let res: StdResult<DataverseResponse> = from_json(res.unwrap());
230+
assert!(res.is_ok());
231+
assert_eq!(
232+
res.unwrap(),
233+
DataverseResponse {
234+
name: "my-dataverse".to_string(),
235+
triplestore_address: Addr::unchecked("my-dataverse-addr"),
236+
}
237+
);
238+
}
239+
200240
#[test]
201241
fn proper_submit_claims() {
202242
let mut deps = mock_dependencies();

‎contracts/okp4-dataverse/src/msg.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use cosmwasm_schema::{cw_serde, QueryResponses};
2-
use cosmwasm_std::{Binary, Uint128, Uint64};
2+
use cosmwasm_std::{Addr, Binary, Uint128, Uint64};
33

44
/// `InstantiateMsg` is used to initialize a new instance of the dataverse.
55
#[cw_serde]
@@ -189,4 +189,6 @@ pub enum QueryMsg {
189189
pub struct DataverseResponse {
190190
/// The name of the dataverse.
191191
pub name: String,
192+
/// The cognitarium contract address.
193+
pub triplestore_address: Addr,
192194
}

‎docs/okp4-dataverse.md

+19-4
Original file line numberDiff line numberDiff line change
@@ -135,12 +135,27 @@ Retrieves information about the current dataverse instance.
135135

136136
DataverseResponse is the response of the Dataverse query.
137137

138-
| property | description |
139-
| -------- | ----------------------------------------------------- |
140-
| `name` | _(Required.) _ **string**. The name of the dataverse. |
138+
| property | description |
139+
| --------------------- | ------------------------------------------------------------------- |
140+
| `name` | _(Required.) _ **string**. The name of the dataverse. |
141+
| `triplestore_address` | _(Required.) _ **[Addr](#addr)**. The cognitarium contract address. |
141142

142143
## Definitions
143144

145+
### Addr
146+
147+
A human readable address.
148+
149+
In Cosmos, this is typically bech32 encoded. But for multi-chain smart contracts no assumptions should be made other than being UTF-8 encoded and of reasonable length.
150+
151+
This type represents a validated address. It can be created in the following ways 1. Use `Addr::unchecked(input)` 2. Use `let checked: Addr = deps.api.addr_validate(input)?` 3. Use `let checked: Addr = deps.api.addr_humanize(canonical_addr)?` 4. Deserialize from JSON. This must only be done from JSON that was validated before such as a contract's state. `Addr` must not be used in messages sent by the user because this would result in unvalidated instances.
152+
153+
This type is immutable. If you really need to mutate it (Really? Are you sure?), create a mutable copy using `let mut mutable = Addr::to_string()` and operate on that `String` instance.
154+
155+
| type |
156+
| ----------- |
157+
| **string**. |
158+
144159
### Binary
145160

146161
A string containing Base64-encoded data.
@@ -223,5 +238,5 @@ let b = Uint64::from(70u32); assert_eq!(b.u64(), 70); ```
223238
224239
---
225240
226-
*Rendered by [Fadroma](https://fadroma.tech) ([@fadroma/schema 1.1.0](https://www.npmjs.com/package/@fadroma/schema)) from `okp4-dataverse.json` (`c007ecd2b9eeb04a`)*
241+
*Rendered by [Fadroma](https://fadroma.tech) ([@fadroma/schema 1.1.0](https://www.npmjs.com/package/@fadroma/schema)) from `okp4-dataverse.json` (`bd9dd1798f1b3a0d`)*
227242
````

0 commit comments

Comments
 (0)