forked from madonoharu/tsify
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from siefkenj/next
Merge `next` branch which contains many fixes/contributions to tsify
- Loading branch information
Showing
29 changed files
with
1,661 additions
and
157 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
name: Build and Test | ||
|
||
on: | ||
push: | ||
branches: [main, next] | ||
pull_request: | ||
branches: ["*"] | ||
|
||
jobs: | ||
build: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install toolchain | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
profile: minimal | ||
toolchain: stable | ||
override: true | ||
|
||
- name: Check | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: check | ||
|
||
- name: Build | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: build | ||
test: | ||
name: Test | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install toolchain | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
profile: minimal | ||
toolchain: stable | ||
override: true | ||
components: rustfmt | ||
|
||
- name: Add cargo-expand | ||
run: cargo install cargo-expand | ||
|
||
- name: Test | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: test | ||
lint: | ||
name: Lint | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install toolchain | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
profile: minimal | ||
toolchain: stable | ||
override: true | ||
components: rustfmt, clippy | ||
|
||
- name: Cargo fmt | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: fmt | ||
args: --all -- --check |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
#![allow(dead_code)] | ||
|
||
use indoc::indoc; | ||
use pretty_assertions::assert_eq; | ||
use tsify::Tsify; | ||
|
||
#[test] | ||
fn test_prefix() { | ||
type MyType = u32; | ||
|
||
#[derive(Tsify)] | ||
#[tsify(type_prefix = "Special")] | ||
struct PrefixedStruct { | ||
// Make sure that prefix isn't applied to builtin types | ||
x: u32, | ||
y: MyType, | ||
} | ||
|
||
assert_eq!( | ||
PrefixedStruct::DECL, | ||
indoc! {" | ||
export interface SpecialPrefixedStruct { | ||
x: number; | ||
y: SpecialMyType; | ||
}" | ||
} | ||
); | ||
|
||
#[derive(Tsify)] | ||
#[tsify(type_prefix = "Special")] | ||
enum PrefixedEnum { | ||
VariantA(MyType), | ||
VariantB(u32), | ||
} | ||
|
||
assert_eq!( | ||
PrefixedEnum::DECL, | ||
indoc! {" | ||
export type SpecialPrefixedEnum = { VariantA: SpecialMyType } | { VariantB: number };" | ||
} | ||
); | ||
} | ||
|
||
#[test] | ||
fn test_suffix() { | ||
type MyType = u32; | ||
|
||
#[derive(Tsify)] | ||
#[tsify(type_suffix = "Special")] | ||
struct SuffixedStruct { | ||
// Make sure that prefix isn't applied to builtin types | ||
x: u32, | ||
y: MyType, | ||
} | ||
|
||
assert_eq!( | ||
SuffixedStruct::DECL, | ||
indoc! {" | ||
export interface SuffixedStructSpecial { | ||
x: number; | ||
y: MyTypeSpecial; | ||
}" | ||
} | ||
); | ||
|
||
#[derive(Tsify)] | ||
#[tsify(type_suffix = "Special")] | ||
enum SuffixedEnum { | ||
VariantA(MyType), | ||
VariantB(u32), | ||
} | ||
|
||
assert_eq!( | ||
SuffixedEnum::DECL, | ||
indoc! {" | ||
export type SuffixedEnumSpecial = { VariantA: MyTypeSpecial } | { VariantB: number };" | ||
} | ||
); | ||
} | ||
|
||
#[test] | ||
fn test_prefix_suffix() { | ||
type MyType = u32; | ||
|
||
#[derive(Tsify)] | ||
#[tsify(type_prefix = "Pre", type_suffix = "Suf")] | ||
struct DoubleAffixedStruct { | ||
// Make sure that prefix isn't applied to builtin types | ||
x: u32, | ||
y: MyType, | ||
} | ||
|
||
assert_eq!( | ||
DoubleAffixedStruct::DECL, | ||
indoc! {" | ||
export interface PreDoubleAffixedStructSuf { | ||
x: number; | ||
y: PreMyTypeSuf; | ||
}" | ||
} | ||
); | ||
|
||
#[derive(Tsify)] | ||
#[tsify(type_prefix = "Pre", type_suffix = "Suf")] | ||
enum DoubleAffixedEnum { | ||
VariantA(MyType), | ||
VariantB(u32), | ||
} | ||
|
||
assert_eq!( | ||
DoubleAffixedEnum::DECL, | ||
indoc! {" | ||
export type PreDoubleAffixedEnumSuf = { VariantA: PreMyTypeSuf } | { VariantB: number };" | ||
} | ||
); | ||
} |
Oops, something went wrong.