Skip to content

Commit

Permalink
Merge branch 'main' into fix/ms_compat
Browse files Browse the repository at this point in the history
  • Loading branch information
AsterDY authored Feb 26, 2024
2 parents 63943c0 + 0e87afb commit bb982a2
Show file tree
Hide file tree
Showing 2 changed files with 93 additions and 1 deletion.
12 changes: 11 additions & 1 deletion ast/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ func (self *Node) Unset(key string) (bool, error) {
} else if err := p.Check(); err != nil {
return false, err
}
self.removePair(i)
self.removePairAt(i)
return true, nil
}

Expand Down Expand Up @@ -1481,6 +1481,16 @@ func (self *Node) removePair(i int) {
self.l--
}

func (self *Node) removePairAt(i int) {
p := (*linkedPairs)(self.p).At(i)
if p == nil {
return
}
*p = Pair{}
// NOTICE: should be consistent with linkedPair.Len()
self.l--
}

func (self *Node) toGenericArray() ([]interface{}, error) {
nb := self.len()
if nb == 0 {
Expand Down
82 changes: 82 additions & 0 deletions issue_test/issue600_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
/**
* Copyright 2024 ByteDance Inc.
*
* 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
*
* 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 issue_test

import (
"fmt"
"testing"

"github.com/bytedance/sonic/ast"
"github.com/stretchr/testify/require"
)


func TestIssue600(t *testing.T) {
// object
obj := ast.NewRaw("{\"x\":\"a\",\"y\":\"b\"}")
if ok, err := obj.Unset("x"); !ok || err != nil {
panic(fmt.Errorf("unset x fail, ok=%v, err=%v", ok, err))
}
if ok, err := obj.Unset("y"); !ok || err != nil {
panic(fmt.Errorf("unset y fail, ok=%v, err=%v", ok, err))
}
result, err := obj.MarshalJSON()
if err != nil {
panic(fmt.Errorf("MarshalJSON fail: err=%v", err))
}
require.Equal(t, `{}`, string(result))

obj = ast.NewRaw("{\"x\":\"a\",\"y\":\"b\"}")
if ok, err := obj.Unset("y"); !ok || err != nil {
panic(fmt.Errorf("unset x fail, ok=%v, err=%v", ok, err))
}
if ok, err := obj.Unset("x"); !ok || err != nil {
panic(fmt.Errorf("unset y fail, ok=%v, err=%v", ok, err))
}
result, err = obj.MarshalJSON()
if err != nil {
panic(fmt.Errorf("MarshalJSON fail: err=%v", err))
}
require.Equal(t, `{}`, string(result))

// array
obj = ast.NewRaw("[1,2]")
if ok, err := obj.UnsetByIndex(0); !ok || err != nil {
panic(fmt.Errorf("unset x fail, ok=%v, err=%v", ok, err))
}
if ok, err := obj.UnsetByIndex(0); !ok || err != nil {
panic(fmt.Errorf("unset y fail, ok=%v, err=%v", ok, err))
}
result, err = obj.MarshalJSON()
if err != nil {
panic(fmt.Errorf("MarshalJSON fail: err=%v", err))
}
require.Equal(t, `[]`, string(result))

obj = ast.NewRaw("[1,2]")
if ok, err := obj.UnsetByIndex(1); !ok || err != nil {
panic(fmt.Errorf("unset x fail, ok=%v, err=%v", ok, err))
}
if ok, err := obj.UnsetByIndex(0); !ok || err != nil {
panic(fmt.Errorf("unset y fail, ok=%v, err=%v", ok, err))
}
result, err = obj.MarshalJSON()
if err != nil {
panic(fmt.Errorf("MarshalJSON fail: err=%v", err))
}
require.Equal(t, `[]`, string(result))
}

0 comments on commit bb982a2

Please sign in to comment.