mirror of
https://github.com/google/nomulus
synced 2026-02-08 22:10:28 +00:00
Move test resource files into src/test/resources (#143)
* Move test resource files into src/test/resources * fix a test * Remove references to javatests/ in Java files * fix import order * fix semantic merge conflict
This commit is contained in:
23
proxy/src/test/resources/google/registry/proxy/login.xml
Normal file
23
proxy/src/test/resources/google/registry/proxy/login.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<command>
|
||||
<login>
|
||||
<clID>ClientX</clID>
|
||||
<pw>foo-BAR2</pw>
|
||||
<newPW>bar-FOO2</newPW>
|
||||
<options>
|
||||
<version>1.0</version>
|
||||
<lang>en</lang>
|
||||
</options>
|
||||
<svcs>
|
||||
<objURI>urn:ietf:params:xml:ns:obj1</objURI>
|
||||
<objURI>urn:ietf:params:xml:ns:obj2</objURI>
|
||||
<objURI>urn:ietf:params:xml:ns:obj3</objURI>
|
||||
<svcExtension>
|
||||
<extURI>http://custom/obj1ext-1.0</extURI>
|
||||
</svcExtension>
|
||||
</svcs>
|
||||
</login>
|
||||
<clTRID>ABC-12345</clTRID>
|
||||
</command>
|
||||
</epp>
|
||||
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<epp xmlns:domain="urn:ietf:params:xml:ns:domain-1.0" xmlns:contact="urn:ietf:params:xml:ns:contact-1.0" xmlns:host="urn:ietf:params:xml:ns:host-1.0" xmlns:launch="urn:ietf:params:xml:ns:launch-1.0" xmlns:rgp="urn:ietf:params:xml:ns:rgp-1.0" xmlns="urn:ietf:params:xml:ns:epp-1.0" xmlns:secDNS="urn:ietf:params:xml:ns:secDNS-1.1" xmlns:fee12="urn:ietf:params:xml:ns:fee-0.12" xmlns:fee11="urn:ietf:params:xml:ns:fee-0.11" xmlns:mark="urn:ietf:params:xml:ns:mark-1.0" xmlns:fee="urn:ietf:params:xml:ns:fee-0.6">
|
||||
<response>
|
||||
<result code="1000">
|
||||
<msg>Command completed successfully</msg>
|
||||
</result>
|
||||
<trID>
|
||||
<clTRID>proxy-login</clTRID>
|
||||
<svTRID>inlxipwsQKaXS3VmbKOmBA==-a</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
</epp>
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<command>
|
||||
<logout/>
|
||||
<clTRID>ABC-12345</clTRID>
|
||||
</command>
|
||||
</epp>
|
||||
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<epp xmlns:domain="urn:ietf:params:xml:ns:domain-1.0" xmlns:contact="urn:ietf:params:xml:ns:contact-1.0" xmlns:host="urn:ietf:params:xml:ns:host-1.0" xmlns:launch="urn:ietf:params:xml:ns:launch-1.0" xmlns:rgp="urn:ietf:params:xml:ns:rgp-1.0" xmlns="urn:ietf:params:xml:ns:epp-1.0" xmlns:secDNS="urn:ietf:params:xml:ns:secDNS-1.1" xmlns:fee12="urn:ietf:params:xml:ns:fee-0.12" xmlns:fee11="urn:ietf:params:xml:ns:fee-0.11" xmlns:mark="urn:ietf:params:xml:ns:mark-1.0" xmlns:fee="urn:ietf:params:xml:ns:fee-0.6">
|
||||
<response>
|
||||
<result code="1500">
|
||||
<msg>Command completed successfully; ending session</msg>
|
||||
</result>
|
||||
<trID>
|
||||
<clTRID>proxy-logout</clTRID>
|
||||
<svTRID>inlxipwsQKaXS3VmbKOmBA==-c</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
</epp>
|
||||
@@ -0,0 +1,8 @@
|
||||
refreshSeconds: 3600
|
||||
|
||||
defaultQuota:
|
||||
userId: []
|
||||
tokenAmount: 100
|
||||
refillSeconds: 60
|
||||
|
||||
customQuota: []
|
||||
@@ -0,0 +1,14 @@
|
||||
refreshSeconds: 3600
|
||||
|
||||
defaultQuota:
|
||||
userId: []
|
||||
tokenAmount: 100
|
||||
refillSeconds: 60
|
||||
|
||||
customQuota:
|
||||
- userId: ["abc", "def"]
|
||||
tokenAmount: 10
|
||||
refillSeconds: 60
|
||||
- userId: ["xyz123", "def", "luckycat"]
|
||||
tokenAmount: 500
|
||||
refillSeconds: 10
|
||||
@@ -0,0 +1,8 @@
|
||||
refreshSeconds: 0
|
||||
|
||||
defaultQuota:
|
||||
userId: []
|
||||
tokenAmount: 100
|
||||
refillSeconds: 0
|
||||
|
||||
customQuota: []
|
||||
@@ -0,0 +1,14 @@
|
||||
refreshSeconds: 3600
|
||||
|
||||
defaultQuota:
|
||||
userId: []
|
||||
tokenAmount: 100
|
||||
refillSeconds: 60
|
||||
|
||||
customQuota:
|
||||
- userId: ["abc", "def"]
|
||||
tokenAmount: 10
|
||||
refillSeconds: 60
|
||||
- userId: ["xyz123", "987lol", "luckycat"]
|
||||
tokenAmount: 500
|
||||
refillSeconds: 10
|
||||
@@ -0,0 +1,8 @@
|
||||
refreshSeconds: 3600
|
||||
|
||||
defaultQuota:
|
||||
userId: []
|
||||
tokenAmount: -1
|
||||
refillSeconds: 60
|
||||
|
||||
customQuota: []
|
||||
Reference in New Issue
Block a user