Skip to content

Commit

Permalink
Revert "Stop using __Nonexhaustive for market type conversion (#527)"
Browse files Browse the repository at this point in the history
This reverts commit 7300d0c.
  • Loading branch information
shanemadden committed Aug 15, 2024
1 parent ca1ab4b commit 946e5bd
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 18 deletions.
34 changes: 20 additions & 14 deletions src/constants/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -834,7 +834,7 @@ mod test {
#[test]
fn resources_rust_to_serde_json_from_serde_json_roundtrip() {
for resource in enum_iterator::all::<ResourceType>() {
if resource != ResourceType::__Invalid {
if resource != ResourceType::__Nonexhaustive {
let serialized = serde_json::to_string(&resource).unwrap();
let parsed: ResourceType = serde_json::from_str(&serialized).unwrap();
assert_eq!(resource, parsed);
Expand All @@ -845,7 +845,7 @@ mod test {
#[test]
fn resources_rust_to_display_from_str_roundtrip() {
for resource in enum_iterator::all::<ResourceType>() {
if resource != ResourceType::__Invalid {
if resource != ResourceType::__Nonexhaustive {
let string = format!("{}", resource);
let parsed = ResourceType::from_str(&string).unwrap();
assert_eq!(resource, parsed);
Expand All @@ -857,7 +857,7 @@ mod test {
fn resources_rust_vec_to_serde_json_from_serde_json_roundtrip() {
let mut resources = vec![];
for resource in enum_iterator::all::<ResourceType>() {
if resource != ResourceType::__Invalid {
if resource != ResourceType::__Nonexhaustive {
resources.push(resource);
}
}
Expand All @@ -870,7 +870,7 @@ mod test {
fn resources_rust_vec_to_serde_json_from_serde_json_roundtrip_via_values() {
let mut resources = vec![];
for resource in enum_iterator::all::<ResourceType>() {
if resource != ResourceType::__Invalid {
if resource != ResourceType::__Nonexhaustive {
resources.push(resource);
}
}
Expand All @@ -887,7 +887,7 @@ mod test {
#[test]
fn intershard_resources_rust_to_serde_json_from_serde_json_roundtrip() {
for resource in enum_iterator::all::<IntershardResourceType>() {
if resource != IntershardResourceType::__Invalid {
if resource != IntershardResourceType::__Nonexhaustive {
let serialized = serde_json::to_string(&resource).unwrap();
let parsed: IntershardResourceType = serde_json::from_str(&serialized).unwrap();
assert_eq!(resource, parsed);
Expand All @@ -898,7 +898,7 @@ mod test {
#[test]
fn intershard_resources_rust_to_display_from_str_roundtrip() {
for resource in enum_iterator::all::<IntershardResourceType>() {
if resource != IntershardResourceType::__Invalid {
if resource != IntershardResourceType::__Nonexhaustive {
let string = format!("{}", resource);
let parsed = IntershardResourceType::from_str(&string).unwrap();
assert_eq!(resource, parsed);
Expand All @@ -910,7 +910,7 @@ mod test {
fn intershard_resources_rust_vec_to_serde_json_from_serde_json_roundtrip() {
let mut resources = vec![];
for resource in enum_iterator::all::<IntershardResourceType>() {
if resource != IntershardResourceType::__Invalid {
if resource != IntershardResourceType::__Nonexhaustive {
resources.push(resource);
}
}
Expand All @@ -924,7 +924,7 @@ mod test {
fn intershard_resources_rust_vec_to_serde_json_from_serde_json_roundtrip_via_values() {
let mut resources = vec![];
for resource in enum_iterator::all::<IntershardResourceType>() {
if resource != IntershardResourceType::__Invalid {
if resource != IntershardResourceType::__Nonexhaustive {
resources.push(resource);
}
}
Expand All @@ -941,9 +941,11 @@ mod test {
#[test]
fn market_resources_rust_to_serde_json_from_serde_json_roundtrip() {
for resource in enum_iterator::all::<MarketResourceType>() {
if resource != MarketResourceType::Resource(ResourceType::__Invalid)
if resource != MarketResourceType::Resource(ResourceType::__Nonexhaustive)
&& resource
!= MarketResourceType::IntershardResource(IntershardResourceType::__Invalid)
!= MarketResourceType::IntershardResource(
IntershardResourceType::__Nonexhaustive,
)
{
let serialized = serde_json::to_string(&resource).unwrap();
let parsed: MarketResourceType = serde_json::from_str(&serialized).unwrap();
Expand All @@ -956,9 +958,11 @@ mod test {
fn market_resources_rust_vec_to_serde_json_from_serde_json_roundtrip() {
let mut resources = vec![];
for resource in enum_iterator::all::<MarketResourceType>() {
if resource != MarketResourceType::Resource(ResourceType::__Invalid)
if resource != MarketResourceType::Resource(ResourceType::__Nonexhaustive)
&& resource
!= MarketResourceType::IntershardResource(IntershardResourceType::__Invalid)
!= MarketResourceType::IntershardResource(
IntershardResourceType::__Nonexhaustive,
)
{
resources.push(resource);
}
Expand All @@ -973,9 +977,11 @@ mod test {
fn market_resources_rust_vec_to_serde_json_from_serde_json_roundtrip_via_values() {
let mut resources = vec![];
for resource in enum_iterator::all::<MarketResourceType>() {
if resource != MarketResourceType::Resource(ResourceType::__Invalid)
if resource != MarketResourceType::Resource(ResourceType::__Nonexhaustive)
&& resource
!= MarketResourceType::IntershardResource(IntershardResourceType::__Invalid)
!= MarketResourceType::IntershardResource(
IntershardResourceType::__Nonexhaustive,
)
{
resources.push(resource);
}
Expand Down
4 changes: 0 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,6 @@

// #![warn(clippy::missing_const_for_fn)]

// disable deprecation warnings - TODO need to figure out how to get wasm_bindgen's new thread_local
// attribute working
#![allow(deprecated)]

pub mod console;
pub mod constants;
pub mod enums;
Expand Down

0 comments on commit 946e5bd

Please sign in to comment.